From bc67393a67f714e0a8165b6103e53699c676341c Mon Sep 17 00:00:00 2001 From: boxi Date: Mon, 26 Apr 2021 19:55:31 +0800 Subject: [PATCH] fix: Provide a separate configuration macro for boot environment in RAM. --- kernel/common/Kconfig | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/kernel/common/Kconfig b/kernel/common/Kconfig index dbf2f11b..6c742c51 100644 --- a/kernel/common/Kconfig +++ b/kernel/common/Kconfig @@ -35,16 +35,16 @@ config BOOTENV_ADDR Boot command line addr, range from 0 to 1MB. config BOOTENV_RAM - bool "Storage bootenv in RAM" - default n - depends on PLATFORM_ROOTFS - help - Answer Y to read bootenv from ram. Need boot copy to RAM. + bool "Storage bootenv in RAM" + default n + depends on PLATFORM_ROOTFS + help + Answer Y to read bootenv from ram. Need boot copy to RAM. config BOOTENV_RAMSIZE - int "Size of boot environment in RAM (Byte)" - depends on PLATFORM_ROOTFS && BOOTENV_RAM - range 128 1024 - default 512 - help - Boot environment in Ram space size, range from 128 to 1024 byte. + int "Size of boot environment in RAM (Byte)" + depends on PLATFORM_ROOTFS && BOOTENV_RAM + range 128 1024 + default 512 + help + Boot environment in Ram space size, range from 128 to 1024 byte.