5.15.7-2 (clr 5.15.6-1105) enable SMB3 server support as a module
This commit is contained in:
parent
476b093182
commit
3d0ceaae4a
2 changed files with 9 additions and 3 deletions
3
.SRCINFO
3
.SRCINFO
|
@ -1,7 +1,7 @@
|
||||||
pkgbase = linux-clear
|
pkgbase = linux-clear
|
||||||
pkgdesc = Clear Linux
|
pkgdesc = Clear Linux
|
||||||
pkgver = 5.15.7
|
pkgver = 5.15.7
|
||||||
pkgrel = 1
|
pkgrel = 2
|
||||||
url = https://github.com/clearlinux-pkgs/linux
|
url = https://github.com/clearlinux-pkgs/linux
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = GPL2
|
license = GPL2
|
||||||
|
@ -41,6 +41,7 @@ pkgname = linux-clear
|
||||||
optdepends = modprobed-db: Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig
|
optdepends = modprobed-db: Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig
|
||||||
provides = VIRTUALBOX-GUEST-MODULES
|
provides = VIRTUALBOX-GUEST-MODULES
|
||||||
provides = WIREGUARD-MODULE
|
provides = WIREGUARD-MODULE
|
||||||
|
provides = KSMBD-MODULE
|
||||||
|
|
||||||
pkgname = linux-clear-headers
|
pkgname = linux-clear-headers
|
||||||
pkgdesc = Headers and scripts for building modules for the Clear Linux kernel
|
pkgdesc = Headers and scripts for building modules for the Clear Linux kernel
|
||||||
|
|
9
PKGBUILD
9
PKGBUILD
|
@ -79,7 +79,7 @@ _srcname=linux-${_major}
|
||||||
_clr=${_major}.6-1105
|
_clr=${_major}.6-1105
|
||||||
pkgbase=linux-clear
|
pkgbase=linux-clear
|
||||||
pkgver=${_major}.${_minor}
|
pkgver=${_major}.${_minor}
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc='Clear Linux'
|
pkgdesc='Clear Linux'
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://github.com/clearlinux-pkgs/linux"
|
url="https://github.com/clearlinux-pkgs/linux"
|
||||||
|
@ -177,6 +177,11 @@ prepare() {
|
||||||
--enable NTFS3_LZX_XPRESS \
|
--enable NTFS3_LZX_XPRESS \
|
||||||
--enable NTFS3_FS_POSIX_ACL
|
--enable NTFS3_FS_POSIX_ACL
|
||||||
|
|
||||||
|
scripts/config --module SMB_SERVER \
|
||||||
|
--enable SMB_SERVER_SMBDIRECT \
|
||||||
|
--enable SMB_SERVER_CHECK_CAP_NET_ADMIN \
|
||||||
|
--enable SMB_SERVER_KERBEROS5
|
||||||
|
|
||||||
# Security options
|
# Security options
|
||||||
scripts/config --enable SECURITY_SELINUX \
|
scripts/config --enable SECURITY_SELINUX \
|
||||||
--enable SECURITY_SELINUX_BOOTPARAM \
|
--enable SECURITY_SELINUX_BOOTPARAM \
|
||||||
|
@ -254,7 +259,7 @@ _package() {
|
||||||
optdepends=('crda: to set the correct wireless channels of your country'
|
optdepends=('crda: to set the correct wireless channels of your country'
|
||||||
'linux-firmware: firmware images needed for some devices'
|
'linux-firmware: firmware images needed for some devices'
|
||||||
'modprobed-db: Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig')
|
'modprobed-db: Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig')
|
||||||
provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE)
|
provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE KSMBD-MODULE)
|
||||||
install=linux.install
|
install=linux.install
|
||||||
|
|
||||||
cd $_srcname
|
cd $_srcname
|
||||||
|
|
Loading…
Reference in a new issue