diff options
author | Masahiro Yamada | 2014-09-14 03:01:49 +0900 |
---|---|---|
committer | Tom Rini | 2014-09-13 16:43:55 -0400 |
commit | 461be2f96e4b87e5065208c6659a47dd0ad9e9f8 (patch) | |
tree | d520fd4b524d930c2ad1503b412406e62bbc6413 /board/mpl | |
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/mpl')
-rw-r--r-- | board/mpl/mip405/Kconfig | 3 | ||||
-rw-r--r-- | board/mpl/pati/Kconfig | 3 | ||||
-rw-r--r-- | board/mpl/pip405/Kconfig | 3 | ||||
-rw-r--r-- | board/mpl/vcma9/Kconfig | 5 |
4 files changed, 0 insertions, 14 deletions
diff --git a/board/mpl/mip405/Kconfig b/board/mpl/mip405/Kconfig index 6705260d3ce..48ba91a529e 100644 --- a/board/mpl/mip405/Kconfig +++ b/board/mpl/mip405/Kconfig @@ -1,15 +1,12 @@ if TARGET_MIP405 config SYS_BOARD - string default "mip405" config SYS_VENDOR - string default "mpl" config SYS_CONFIG_NAME - string default "MIP405" endif diff --git a/board/mpl/pati/Kconfig b/board/mpl/pati/Kconfig index b902cbd273f..b141da39849 100644 --- a/board/mpl/pati/Kconfig +++ b/board/mpl/pati/Kconfig @@ -1,15 +1,12 @@ if TARGET_PATI config SYS_BOARD - string default "pati" config SYS_VENDOR - string default "mpl" config SYS_CONFIG_NAME - string default "PATI" endif diff --git a/board/mpl/pip405/Kconfig b/board/mpl/pip405/Kconfig index 1e1295b0cea..f485367410b 100644 --- a/board/mpl/pip405/Kconfig +++ b/board/mpl/pip405/Kconfig @@ -1,15 +1,12 @@ if TARGET_PIP405 config SYS_BOARD - string default "pip405" config SYS_VENDOR - string default "mpl" config SYS_CONFIG_NAME - string default "PIP405" endif diff --git a/board/mpl/vcma9/Kconfig b/board/mpl/vcma9/Kconfig index 91246be71bb..08b0fa01847 100644 --- a/board/mpl/vcma9/Kconfig +++ b/board/mpl/vcma9/Kconfig @@ -1,23 +1,18 @@ if TARGET_VCMA9 config SYS_CPU - string default "arm920t" config SYS_BOARD - string default "vcma9" config SYS_VENDOR - string default "mpl" config SYS_SOC - string default "s3c24x0" config SYS_CONFIG_NAME - string default "VCMA9" endif |