mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
powerpc: ppc4xx: Move CANYONLANDS/GLACIER/ARCHES to Kconfig
Move these options to Kconfig and remove them from the CONFIG files. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
0bca284b17
commit
6566041c0b
5 changed files with 25 additions and 3 deletions
|
@ -9,4 +9,24 @@ config SYS_VENDOR
|
|||
config SYS_CONFIG_NAME
|
||||
default "canyonlands"
|
||||
|
||||
choice BOARD_TYPE
|
||||
prompt "Select which board to build for"
|
||||
|
||||
config CANYONLANDS
|
||||
bool "Glacier"
|
||||
help
|
||||
Select this to build for the Canyonlands 460EX board.
|
||||
|
||||
config GLACIER
|
||||
bool "Glacier"
|
||||
help
|
||||
Select this to build for the Glacier 460GT board.
|
||||
|
||||
config ARCHES
|
||||
bool "Arches"
|
||||
help
|
||||
Select this to build for the Arches dual 460GT board.
|
||||
|
||||
endchoice
|
||||
|
||||
endif
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG_SYS_EXTRA_OPTIONS="ARCHES"
|
||||
CONFIG_PPC=y
|
||||
CONFIG_4xx=y
|
||||
CONFIG_TARGET_CANYONLANDS=y
|
||||
CONFIG_ARCHES=y
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG_SYS_EXTRA_OPTIONS="CANYONLANDS"
|
||||
CONFIG_PPC=y
|
||||
CONFIG_4xx=y
|
||||
CONFIG_TARGET_CANYONLANDS=y
|
||||
CONFIG_CANYONLANDS=y
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
CONFIG_SYS_EXTRA_OPTIONS="GLACIER"
|
||||
CONFIG_PPC=y
|
||||
CONFIG_4xx=y
|
||||
CONFIG_TARGET_CANYONLANDS=y
|
||||
CONFIG_GLACIER=y
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#ifndef __CONFIG_H
|
||||
#define __CONFIG_H
|
||||
|
||||
#include <linux/kconfig.h>
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
* High Level Configuration Options
|
||||
*----------------------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in a new issue