diff options
author | Derald D. Woods <woods.technical@gmail.com> | 2018-01-22 17:17:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-30 12:52:57 -0500 |
commit | 405fc8305baef921593b822809fb7bf60474b73f (patch) | |
tree | c9ac71913be9076fc226ee51603b819e04ee9176 /Kconfig | |
parent | f1554b28d31250df5418254e79e0bf75ff3b2e54 (diff) | |
download | u-boot-405fc8305baef921593b822809fb7bf60474b73f.zip u-boot-405fc8305baef921593b822809fb7bf60474b73f.tar.gz u-boot-405fc8305baef921593b822809fb7bf60474b73f.tar.bz2 |
Convert CONFIG_SYS_BOOT_GET_{CMDLINE, KBD} to Kconfig
This converts the following to Kconfig:
CONFIG_SYS_BOOT_GET_CMDLINE
CONFIG_SYS_BOOT_GET_KBD
Signed-off-by: Derald D. Woods <woods.technical@gmail.com>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -83,6 +83,18 @@ config DISTRO_DEFAULTS Select this to enable various options and commands which are suitable for building u-boot for booting general purpose Linux distributions. +config SYS_BOOT_GET_CMDLINE + bool "Enable kernel command line setup" + help + Enables allocating and saving kernel cmdline in space between + "bootm_low" and "bootm_low" + BOOTMAPSZ. + +config SYS_BOOT_GET_KBD + bool "Enable kernel board information setup" + help + Enables allocating and saving a kernel copy of the bd_info in + space between "bootm_low" and "bootm_low" + BOOTMAPSZ. + config SYS_MALLOC_F bool "Enable malloc() pool before relocation" default y if DM |