mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
dd84058d24
This commit adds: - arch/${ARCH}/Kconfig provide a menu to select target boards - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig set CONFIG macros to the appropriate values for each board - configs/${TARGET_BOARD}_defconfig default setting of each board (This commit was automatically generated by a conversion script based on boards.cfg) In Linux Kernel, defconfig files are located under arch/${ARCH}/configs/ directory. It works in Linux Kernel since ARCH is always given from the command line for cross compile. But in U-Boot, ARCH is not given from the command line. Which means we cannot know ARCH until the board configuration is done. That is why all the "*_defconfig" files should be gathered into a single directory ./configs/. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
49 lines
840 B
Text
49 lines
840 B
Text
menu "74xx_7xx CPU"
|
|
depends on 74xx_7xx
|
|
|
|
config SYS_CPU
|
|
string
|
|
default "74xx_7xx"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
|
|
config TARGET_P3G4
|
|
bool "Support P3G4"
|
|
|
|
config TARGET_ZUMA
|
|
bool "Support ZUMA"
|
|
|
|
config TARGET_PPMC7XX
|
|
bool "Support ppmc7xx"
|
|
|
|
config TARGET_ELPPC
|
|
bool "Support ELPPC"
|
|
|
|
config TARGET_CPCI750
|
|
bool "Support CPCI750"
|
|
|
|
config TARGET_MPC7448HPC2
|
|
bool "Support mpc7448hpc2"
|
|
|
|
config TARGET_DB64360
|
|
bool "Support DB64360"
|
|
|
|
config TARGET_DB64460
|
|
bool "Support DB64460"
|
|
|
|
config TARGET_P3MX
|
|
bool "Support p3mx"
|
|
|
|
endchoice
|
|
|
|
source "board/Marvell/db64360/Kconfig"
|
|
source "board/Marvell/db64460/Kconfig"
|
|
source "board/eltec/elppc/Kconfig"
|
|
source "board/esd/cpci750/Kconfig"
|
|
source "board/evb64260/Kconfig"
|
|
source "board/freescale/mpc7448hpc2/Kconfig"
|
|
source "board/ppmc7xx/Kconfig"
|
|
source "board/prodrive/p3mx/Kconfig"
|
|
|
|
endmenu
|