diff options
author | shanlong.li <shanlong.li@starfivetech.com> | 2023-06-30 10:47:55 +0300 |
---|---|---|
committer | shanlong.li <shanlong.li@starfivetech.com> | 2023-06-30 10:47:55 +0300 |
commit | fe2665d19dd5ec89289e695c868097826d3efb60 (patch) | |
tree | dc7dda6f690d181801391ed522f986155a9933c5 | |
parent | 7c7f1fe96be8026b18744743c12dbacdf454e2c5 (diff) | |
download | linux-fe2665d19dd5ec89289e695c868097826d3efb60.tar.xz |
defconfig:confis: fix up df -h errror
The default setting is CONFIG_INIT_STACK_ALL_PATTERN in
kernel6.1 , this can cause df -h error like this:
df: xxxx: No such file or director
to fix up it we use CONFIG_INIT_STACK_NONE
Signed-off-by: shanlong.li <shanlong.li@starfivetech.com>
-rw-r--r-- | arch/riscv/configs/starfive_jh7110_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/configs/starfive_jh7110_defconfig b/arch/riscv/configs/starfive_jh7110_defconfig index f352f930ff6d..a67e67712419 100644 --- a/arch/riscv/configs/starfive_jh7110_defconfig +++ b/arch/riscv/configs/starfive_jh7110_defconfig @@ -47,7 +47,6 @@ CONFIG_KVM=m CONFIG_JUMP_LABEL=y CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y -CONFIG_MODVERSIONS=y CONFIG_CMA=y CONFIG_NET=y CONFIG_PACKET=y @@ -318,6 +317,7 @@ CONFIG_SECURITY=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_APPARMOR=y CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_INIT_STACK_NONE=y CONFIG_CRYPTO_USER=y CONFIG_CRYPTO_USER_API_HASH=y CONFIG_CRYPTO_USER_API_SKCIPHER=y |