diff options
author | Ryan Harkin <ryan.harkin@linaro.org> | 2015-10-09 17:18:00 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-11 09:17:03 -0400 |
commit | b483cb5a949af444c06dd3cd9cfad70e645302e9 (patch) | |
tree | 2c53e6911376e7a79a9b1094653e0e6823fee82a /board/armltd | |
parent | c0ae9703b427df0272a7559bdd3d9c9e5c1d6482 (diff) | |
download | u-boot-b483cb5a949af444c06dd3cd9cfad70e645302e9.zip u-boot-b483cb5a949af444c06dd3cd9cfad70e645302e9.tar.gz u-boot-b483cb5a949af444c06dd3cd9cfad70e645302e9.tar.bz2 |
vexpress64: Kconfig: tidy up
The FVP and Juno settings were identical, but duplicated, so I removed
the duplication with this patch.
Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
[trini: Adjust logic to keep if/endif in the file]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/armltd')
-rw-r--r-- | board/armltd/vexpress64/Kconfig | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig index f5693ae..9014418 100644 --- a/board/armltd/vexpress64/Kconfig +++ b/board/armltd/vexpress64/Kconfig @@ -1,17 +1,4 @@ -if TARGET_VEXPRESS64_BASE_FVP - -config SYS_BOARD - default "vexpress64" - -config SYS_VENDOR - default "armltd" - -config SYS_CONFIG_NAME - default "vexpress_aemv8a" - -endif - -if TARGET_VEXPRESS64_JUNO +if TARGET_VEXPRESS64_BASE_FVP || TARGET_VEXPRESS64_JUNO config SYS_BOARD default "vexpress64" |