mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
rmobile: kconfig: move board select menu and common settings
Becuase the board select menu in arch/arm/Kconfig is too big, move the Rmobile board select menu to rmobile/Kconfig. Consolidate also common settings (CONFIG_SYS_CPU="armv7" and CONFIG_SYS_SOC="rmobile"). Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
This commit is contained in:
parent
ddd960e6c4
commit
f40b989863
17 changed files with 46 additions and 64 deletions
|
@ -626,20 +626,8 @@ config TARGET_DRA7XX_EVM
|
|||
config TARGET_OMAP5_UEVM
|
||||
bool "Support omap5_uevm"
|
||||
|
||||
config TARGET_ARMADILLO_800EVA
|
||||
bool "Support armadillo-800eva"
|
||||
|
||||
config TARGET_KZM9G
|
||||
bool "Support kzm9g"
|
||||
|
||||
config TARGET_ALT
|
||||
bool "Support alt"
|
||||
|
||||
config TARGET_KOELSCH
|
||||
bool "Support koelsch"
|
||||
|
||||
config TARGET_LAGER
|
||||
bool "Support lager"
|
||||
config RMOBILE
|
||||
bool "Renesas ARM SoCs"
|
||||
|
||||
config TARGET_S5P_GONI
|
||||
bool "Support s5p_goni"
|
||||
|
@ -728,6 +716,8 @@ config TARGET_JORNADA
|
|||
|
||||
endchoice
|
||||
|
||||
source "arch/arm/cpu/armv7/rmobile/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/tegra-common/Kconfig"
|
||||
|
||||
source "arch/arm/cpu/armv7/zynq/Kconfig"
|
||||
|
@ -763,7 +753,6 @@ source "board/armltd/integrator/Kconfig"
|
|||
source "board/armltd/versatile/Kconfig"
|
||||
source "board/armltd/vexpress/Kconfig"
|
||||
source "board/armltd/vexpress64/Kconfig"
|
||||
source "board/atmark-techno/armadillo-800eva/Kconfig"
|
||||
source "board/atmel/at91rm9200ek/Kconfig"
|
||||
source "board/atmel/at91sam9260ek/Kconfig"
|
||||
source "board/atmel/at91sam9261ek/Kconfig"
|
||||
|
@ -856,7 +845,6 @@ source "board/jornada/Kconfig"
|
|||
source "board/karo/tk71/Kconfig"
|
||||
source "board/karo/tx25/Kconfig"
|
||||
source "board/keymile/km_arm/Kconfig"
|
||||
source "board/kmc/kzm9g/Kconfig"
|
||||
source "board/logicpd/am3517evm/Kconfig"
|
||||
source "board/logicpd/imx27lite/Kconfig"
|
||||
source "board/logicpd/imx31_litekit/Kconfig"
|
||||
|
@ -877,9 +865,6 @@ source "board/ppcag/bg0900/Kconfig"
|
|||
source "board/pxa255_idp/Kconfig"
|
||||
source "board/raidsonic/ib62x0/Kconfig"
|
||||
source "board/raspberrypi/rpi_b/Kconfig"
|
||||
source "board/renesas/alt/Kconfig"
|
||||
source "board/renesas/koelsch/Kconfig"
|
||||
source "board/renesas/lager/Kconfig"
|
||||
source "board/ronetix/pm9261/Kconfig"
|
||||
source "board/ronetix/pm9263/Kconfig"
|
||||
source "board/ronetix/pm9g45/Kconfig"
|
||||
|
|
37
arch/arm/cpu/armv7/rmobile/Kconfig
Normal file
37
arch/arm/cpu/armv7/rmobile/Kconfig
Normal file
|
@ -0,0 +1,37 @@
|
|||
if RMOBILE
|
||||
|
||||
choice
|
||||
prompt "Renesus ARM SoCs board select"
|
||||
|
||||
config TARGET_ARMADILLO_800EVA
|
||||
bool "armadillo 800 eva board"
|
||||
|
||||
config TARGET_KOELSCH
|
||||
bool "Koelsch board"
|
||||
|
||||
config TARGET_LAGER
|
||||
bool "Lager board"
|
||||
|
||||
config TARGET_KZM9G
|
||||
bool "KZM9D board"
|
||||
|
||||
config TARGET_ALT
|
||||
bool "Alt board"
|
||||
|
||||
endchoice
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
source "board/atmark-techno/armadillo-800eva/Kconfig"
|
||||
source "board/renesas/koelsch/Kconfig"
|
||||
source "board/renesas/lager/Kconfig"
|
||||
source "board/kmc/kzm9g/Kconfig"
|
||||
source "board/renesas/alt/Kconfig"
|
||||
|
||||
endif
|
|
@ -1,9 +1,5 @@
|
|||
if TARGET_ARMADILLO_800EVA
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_BOARD
|
||||
string
|
||||
default "armadillo-800eva"
|
||||
|
@ -12,10 +8,6 @@ config SYS_VENDOR
|
|||
string
|
||||
default "atmark-techno"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
string
|
||||
default "armadillo-800eva"
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
if TARGET_KZM9G
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_BOARD
|
||||
string
|
||||
default "kzm9g"
|
||||
|
@ -12,10 +8,6 @@ config SYS_VENDOR
|
|||
string
|
||||
default "kmc"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
string
|
||||
default "kzm9g"
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
if TARGET_ALT
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_BOARD
|
||||
string
|
||||
default "alt"
|
||||
|
@ -12,10 +8,6 @@ config SYS_VENDOR
|
|||
string
|
||||
default "renesas"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
string
|
||||
default "alt"
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
if TARGET_KOELSCH
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_BOARD
|
||||
string
|
||||
default "koelsch"
|
||||
|
@ -12,10 +8,6 @@ config SYS_VENDOR
|
|||
string
|
||||
default "renesas"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
string
|
||||
default "koelsch"
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
if TARGET_LAGER
|
||||
|
||||
config SYS_CPU
|
||||
string
|
||||
default "armv7"
|
||||
|
||||
config SYS_BOARD
|
||||
string
|
||||
default "lager"
|
||||
|
@ -12,10 +8,6 @@ config SYS_VENDOR
|
|||
string
|
||||
default "renesas"
|
||||
|
||||
config SYS_SOC
|
||||
string
|
||||
default "rmobile"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
string
|
||||
default "lager"
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
CONFIG_ARM=y
|
||||
+S:CONFIG_RMOBILE=y
|
||||
CONFIG_TARGET_ALT=y
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
CONFIG_ARM=y
|
||||
+S:CONFIG_RMOBILE=y
|
||||
CONFIG_TARGET_ARMADILLO_800EVA=y
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
CONFIG_ARM=y
|
||||
+S:CONFIG_RMOBILE=y
|
||||
CONFIG_TARGET_KOELSCH=y
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
CONFIG_ARM=y
|
||||
+S:CONFIG_RMOBILE=y
|
||||
CONFIG_TARGET_KZM9G=y
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
CONFIG_ARM=y
|
||||
+S:CONFIG_RMOBILE=y
|
||||
CONFIG_TARGET_LAGER=y
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#undef DEBUG
|
||||
#define CONFIG_ARMV7
|
||||
#define CONFIG_R8A7794
|
||||
#define CONFIG_RMOBILE
|
||||
#define CONFIG_RMOBILE_BOARD_STRING "Alt"
|
||||
#define CONFIG_SH_GPIO_PFC
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#undef DEBUG
|
||||
#define CONFIG_ARMV7
|
||||
#define CONFIG_R8A7740
|
||||
#define CONFIG_RMOBILE
|
||||
#define CONFIG_RMOBILE_BOARD_STRING "Armadillo-800EVA Board\n"
|
||||
#define CONFIG_SH_GPIO_PFC
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#undef DEBUG
|
||||
#define CONFIG_ARMV7
|
||||
#define CONFIG_R8A7791
|
||||
#define CONFIG_RMOBILE
|
||||
#define CONFIG_RMOBILE_BOARD_STRING "Koelsch"
|
||||
#define CONFIG_SH_GPIO_PFC
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
#undef DEBUG
|
||||
|
||||
#define CONFIG_RMOBILE
|
||||
#define CONFIG_SH73A0
|
||||
#define CONFIG_KZM_A9_GT
|
||||
#define CONFIG_RMOBILE_BOARD_STRING "KMC KZM-A9-GT"
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#undef DEBUG
|
||||
#define CONFIG_ARMV7
|
||||
#define CONFIG_R8A7790
|
||||
#define CONFIG_RMOBILE
|
||||
#define CONFIG_RMOBILE_BOARD_STRING "Lager"
|
||||
#define CONFIG_SH_GPIO_PFC
|
||||
|
||||
|
|
Loading…
Reference in a new issue