diff options
author | Masahiro Yamada | 2015-02-20 17:04:01 +0900 |
---|---|---|
committer | Tom Rini | 2015-02-21 08:23:51 -0500 |
commit | 4614b891347dde81b59f32e1ea659c8251f0c4ca (patch) | |
tree | 19cea3393a58af3e65ec5edbba0dc7b9acf16d05 /board/ronetix | |
parent | b4087b354a888928f87386dc46091e672e14be97 (diff) |
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 'board/ronetix')
-rw-r--r-- | board/ronetix/pm9261/Kconfig | 3 | ||||
-rw-r--r-- | board/ronetix/pm9263/Kconfig | 3 | ||||
-rw-r--r-- | board/ronetix/pm9g45/Kconfig | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/board/ronetix/pm9261/Kconfig b/board/ronetix/pm9261/Kconfig index a4934c582ec..8c541981026 100644 --- a/board/ronetix/pm9261/Kconfig +++ b/board/ronetix/pm9261/Kconfig @@ -6,9 +6,6 @@ config SYS_BOARD config SYS_VENDOR default "ronetix" -config SYS_SOC - default "at91" - config SYS_CONFIG_NAME default "pm9261" diff --git a/board/ronetix/pm9263/Kconfig b/board/ronetix/pm9263/Kconfig index 339a6ea1694..5b47d348450 100644 --- a/board/ronetix/pm9263/Kconfig +++ b/board/ronetix/pm9263/Kconfig @@ -6,9 +6,6 @@ config SYS_BOARD config SYS_VENDOR default "ronetix" -config SYS_SOC - default "at91" - config SYS_CONFIG_NAME default "pm9263" diff --git a/board/ronetix/pm9g45/Kconfig b/board/ronetix/pm9g45/Kconfig index 65fc5c48386..ad5309f816d 100644 --- a/board/ronetix/pm9g45/Kconfig +++ b/board/ronetix/pm9g45/Kconfig @@ -6,9 +6,6 @@ config SYS_BOARD config SYS_VENDOR default "ronetix" -config SYS_SOC - default "at91" - config SYS_CONFIG_NAME default "pm9g45" |