rpi-kernel: enable F2FS_FS_SECURITY config
This enables the use of the disabled-by-default "security." namespace in extended attributes, allowing for storage of capabilities on files. Closes #9569.
This commit is contained in:
parent
b8dee7de26
commit
9635bf8d62
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,7 @@ _gitshort="${_githash:0:7}"
|
|||
|
||||
pkgname=rpi-kernel
|
||||
version=4.9.62
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="linux-${_githash}"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
homepage="http://www.kernel.org"
|
||||
|
@ -52,12 +52,14 @@ do_configure() {
|
|||
echo "CONFIG_USER_NS=y" >> arch/arm/configs/bcm2709_defconfig
|
||||
echo "CONFIG_CONNECTOR=y" >> arch/arm/configs/bcm2709_defconfig
|
||||
echo "CONFIG_PROC_EVENTS=y" >> arch/arm/configs/bcm2709_defconfig
|
||||
echo "CONFIG_F2FS_FS_SECURITY=y" >> arch/arm/configs/bcm2709_defconfig
|
||||
make ${makejobs} ${_args} ARCH=arm bcm2709_defconfig
|
||||
;;
|
||||
armv6l*)
|
||||
echo "CONFIG_USER_NS=y" >> arch/arm/configs/bcmrpi_defconfig
|
||||
echo "CONFIG_CONNECTOR=y" >> arch/arm/configs/bcmrpi_defconfig
|
||||
echo "CONFIG_PROC_EVENTS=y" >> arch/arm/configs/bcmrpi_defconfig
|
||||
echo "CONFIG_F2FS_FS_SECURITY=y" >> arch/arm/configs/bcmrpi_defconfig
|
||||
make ${makejobs} ${_args} ARCH=arm bcmrpi_defconfig
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue