diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-14 03:01:49 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-09-13 16:43:55 -0400 |
commit | 461be2f96e4b87e5065208c6659a47dd0ad9e9f8 (patch) | |
tree | d520fd4b524d930c2ad1503b412406e62bbc6413 /board/phytec | |
parent | 3174e4e812b77f9707b358927a5ddf24228c2ae8 (diff) |
kconfig: remove redundant "string" type in arch and board Kconfigs
Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME}
are specified in arch/Kconfig.
We can delete the ones in arch and board Kconfig files.
This commit can be easily reproduced by the following command:
find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e '
/config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ {
N
s/\n[[:space:]]*string//
}
'
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/pcm030/Kconfig | 3 | ||||
-rw-r--r-- | board/phytec/pcm051/Kconfig | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/board/phytec/pcm030/Kconfig b/board/phytec/pcm030/Kconfig index 6eea7e8ea51..3a3eab85768 100644 --- a/board/phytec/pcm030/Kconfig +++ b/board/phytec/pcm030/Kconfig @@ -1,15 +1,12 @@ if TARGET_PCM030 config SYS_BOARD - string default "pcm030" config SYS_VENDOR - string default "phytec" config SYS_CONFIG_NAME - string default "pcm030" endif diff --git a/board/phytec/pcm051/Kconfig b/board/phytec/pcm051/Kconfig index e7104455ac1..f4ed7fdbac4 100644 --- a/board/phytec/pcm051/Kconfig +++ b/board/phytec/pcm051/Kconfig @@ -1,23 +1,18 @@ if TARGET_PCM051 config SYS_CPU - string default "armv7" config SYS_BOARD - string default "pcm051" config SYS_VENDOR - string default "phytec" config SYS_SOC - string default "am33xx" config SYS_CONFIG_NAME - string default "pcm051" endif |