u-boot-brain/board/tqc/tqm8xx/Kconfig
Masahiro Yamada 461be2f96e 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>
2014-09-13 16:43:55 -04:00

234 lines
2.4 KiB
Plaintext

if TARGET_FPS850L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "FPS850L"
endif
if TARGET_FPS860L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "FPS860L"
endif
if TARGET_NSCU
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "NSCU"
endif
if TARGET_SM850
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "SM850"
endif
if TARGET_TK885D
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TK885D"
endif
if TARGET_TQM823L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM823L"
endif
if TARGET_TQM823M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM823M"
endif
if TARGET_TQM850L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM850L"
endif
if TARGET_TQM850M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM850M"
endif
if TARGET_TQM855L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM855L"
endif
if TARGET_TQM855M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM855M"
endif
if TARGET_TQM860L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM860L"
endif
if TARGET_TQM860M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM860M"
endif
if TARGET_TQM862L
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM862L"
endif
if TARGET_TQM862M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM862M"
endif
if TARGET_TQM866M
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM866M"
endif
if TARGET_TQM885D
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "TQM885D"
endif
if TARGET_VIRTLAB2
config SYS_BOARD
default "tqm8xx"
config SYS_VENDOR
default "tqc"
config SYS_CONFIG_NAME
default "virtlab2"
endif