diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2015-02-20 08:04:01 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-02-21 13:23:51 (GMT) |
commit | 4614b891347dde81b59f32e1ea659c8251f0c4ca (patch) | |
tree | 19cea3393a58af3e65ec5edbba0dc7b9acf16d05 /configs/sama5d3xek_mmc_defconfig | |
parent | b4087b354a888928f87386dc46091e672e14be97 (diff) | |
download | u-boot-4614b891347dde81b59f32e1ea659c8251f0c4ca.tar.xz |
ARM: at91: move board select menu and common settings
The board select menu in arch/arm/Kconfig is still big.
To slim down it, this commit moves AT91 boards to
arch/arm/mach-at91/Kconfig.
Also, consolidate "config SYS_SOC" in each board Kconfig.
The Kconfig files under board/ directory were modified with the
following command:
find board -name Kconfig | xargs sed -i -e '
/config SYS_SOC/ {
N
/default "at91"/ {
N
d
}
}
'
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Andreas Bießmann <andreas.devel@googlemail.co>
Diffstat (limited to 'configs/sama5d3xek_mmc_defconfig')
-rw-r--r-- | configs/sama5d3xek_mmc_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/sama5d3xek_mmc_defconfig b/configs/sama5d3xek_mmc_defconfig index 3f8d997..c03106c 100644 --- a/configs/sama5d3xek_mmc_defconfig +++ b/configs/sama5d3xek_mmc_defconfig @@ -1,4 +1,5 @@ CONFIG_SPL=y CONFIG_SYS_EXTRA_OPTIONS="SAMA5D3,SYS_USE_MMC" +S:CONFIG_ARM=y ++S:CONFIG_ARCH_AT91=y +S:CONFIG_TARGET_SAMA5D3XEK=y |