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/siemens | |
parent | 3174e4e812b77f9707b358927a5ddf24228c2ae8 (diff) | |
download | u-boot-imx-461be2f96e4b87e5065208c6659a47dd0ad9e9f8.zip u-boot-imx-461be2f96e4b87e5065208c6659a47dd0ad9e9f8.tar.gz u-boot-imx-461be2f96e4b87e5065208c6659a47dd0ad9e9f8.tar.bz2 |
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/siemens')
-rw-r--r-- | board/siemens/corvus/Kconfig | 5 | ||||
-rw-r--r-- | board/siemens/draco/Kconfig | 10 | ||||
-rw-r--r-- | board/siemens/pxm2/Kconfig | 5 | ||||
-rw-r--r-- | board/siemens/rut/Kconfig | 5 | ||||
-rw-r--r-- | board/siemens/taurus/Kconfig | 5 |
5 files changed, 0 insertions, 30 deletions
diff --git a/board/siemens/corvus/Kconfig b/board/siemens/corvus/Kconfig index e24364c..80018c5 100644 --- a/board/siemens/corvus/Kconfig +++ b/board/siemens/corvus/Kconfig @@ -1,23 +1,18 @@ if TARGET_CORVUS config SYS_CPU - string default "arm926ejs" config SYS_BOARD - string default "corvus" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "at91" config SYS_CONFIG_NAME - string default "corvus" endif diff --git a/board/siemens/draco/Kconfig b/board/siemens/draco/Kconfig index c6dac1c..b930a76 100644 --- a/board/siemens/draco/Kconfig +++ b/board/siemens/draco/Kconfig @@ -1,23 +1,18 @@ if TARGET_DRACO config SYS_CPU - string default "armv7" config SYS_BOARD - string default "draco" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "am33xx" config SYS_CONFIG_NAME - string default "draco" endif @@ -25,23 +20,18 @@ endif if TARGET_DXR2 config SYS_CPU - string default "armv7" config SYS_BOARD - string default "draco" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "am33xx" config SYS_CONFIG_NAME - string default "dxr2" endif diff --git a/board/siemens/pxm2/Kconfig b/board/siemens/pxm2/Kconfig index db69537..f76ec69 100644 --- a/board/siemens/pxm2/Kconfig +++ b/board/siemens/pxm2/Kconfig @@ -1,23 +1,18 @@ if TARGET_PXM2 config SYS_CPU - string default "armv7" config SYS_BOARD - string default "pxm2" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "am33xx" config SYS_CONFIG_NAME - string default "pxm2" endif diff --git a/board/siemens/rut/Kconfig b/board/siemens/rut/Kconfig index c4d9e7e..b7e49da 100644 --- a/board/siemens/rut/Kconfig +++ b/board/siemens/rut/Kconfig @@ -1,23 +1,18 @@ if TARGET_RUT config SYS_CPU - string default "armv7" config SYS_BOARD - string default "rut" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "am33xx" config SYS_CONFIG_NAME - string default "rut" endif diff --git a/board/siemens/taurus/Kconfig b/board/siemens/taurus/Kconfig index 3ef14c6..1fedbd3 100644 --- a/board/siemens/taurus/Kconfig +++ b/board/siemens/taurus/Kconfig @@ -1,23 +1,18 @@ if TARGET_TAURUS config SYS_CPU - string default "arm926ejs" config SYS_BOARD - string default "taurus" config SYS_VENDOR - string default "siemens" config SYS_SOC - string default "at91" config SYS_CONFIG_NAME - string default "taurus" endif |