kconfig: move bootloader options to misc/
Repeating options per BSP should all be maintained in one single place. Change-Id: I45394a5230978effa8fff93ecef736ba44e382d2 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
1971988397
commit
def4fc89c1
2 changed files with 22 additions and 18 deletions
|
@ -39,24 +39,6 @@ config BSP_DIR
|
||||||
the location of the config1p.mdef file and is used by the build system
|
the location of the config1p.mdef file and is used by the build system
|
||||||
to locate the correct linker file.
|
to locate the correct linker file.
|
||||||
|
|
||||||
|
|
||||||
config BOOTLOADER_KEXEC
|
|
||||||
bool
|
|
||||||
prompt "Boot using Linux kexec() system call"
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
This option signifies that Linux boots the kernel using kexec system call
|
|
||||||
and utility. This method is used to boot the kernel over the network.
|
|
||||||
|
|
||||||
config BOOTLOADER_GRUB
|
|
||||||
bool
|
|
||||||
prompt "Boot using GRUB 2.0"
|
|
||||||
default y
|
|
||||||
depends on !BOOTLOADER_KEXEC
|
|
||||||
help
|
|
||||||
This option signifies that GRUB 2.0 is used to boot the kernel. GRUB 2.0
|
|
||||||
is used to boot the kernel from SD card.
|
|
||||||
|
|
||||||
config PHYS_LOAD_ADDR
|
config PHYS_LOAD_ADDR
|
||||||
default 0x00100000
|
default 0x00100000
|
||||||
|
|
||||||
|
|
22
misc/Kconfig
22
misc/Kconfig
|
@ -131,6 +131,28 @@ config ASSERT_LEVEL
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
|
||||||
|
menu "Bootloader Options"
|
||||||
|
|
||||||
|
config BOOTLOADER_KEXEC
|
||||||
|
bool
|
||||||
|
prompt "Boot using Linux kexec() system call"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
This option signifies that Linux boots the kernel using kexec system call
|
||||||
|
and utility. This method is used to boot the kernel over the network.
|
||||||
|
|
||||||
|
config BOOTLOADER_GRUB
|
||||||
|
bool
|
||||||
|
prompt "Boot using GRUB 2.0"
|
||||||
|
default n
|
||||||
|
depends on !BOOTLOADER_KEXEC && X86_32
|
||||||
|
help
|
||||||
|
This option signifies that GRUB 2.0 is used to boot the kernel. GRUB 2.0
|
||||||
|
is used to boot the kernel from SD card.
|
||||||
|
|
||||||
|
endmenu
|
||||||
|
|
||||||
menu "System Monitoring Options"
|
menu "System Monitoring Options"
|
||||||
depends on EXPERIMENTAL
|
depends on EXPERIMENTAL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue