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:
Anas Nashif 2015-06-20 10:50:49 -04:00
commit def4fc89c1
2 changed files with 22 additions and 18 deletions

View file

@ -39,24 +39,6 @@ config BSP_DIR
the location of the config1p.mdef file and is used by the build system
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
default 0x00100000

View file

@ -131,6 +131,28 @@ config ASSERT_LEVEL
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"
depends on EXPERIMENTAL