diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2013-06-19 12:02:47 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-10 22:36:53 +0200 |
commit | 3511b92d31d645e2a77e2729e2f031d08bba98bb (patch) | |
tree | be8313eacd7d41e8a76203cd0f3dba3f59f1c3e9 /src/cpu/samsung/Kconfig | |
parent | 2867060098e4023a2d33d335afe49981584ec378 (diff) |
Samsung CPUs: Unify Kconfig
For all other CPUs, we unconditionally include the CPU Kconfig
files in the CPU directory, not in the vendor directory. Do the
same thing for the Exynos CPUs. This allows us to make CPU dependent
changes in the directory of that CPU alone.
Also, drop some unused Kconfig variables from the Exynos Kconfig
files.
Change-Id: I4e4c22a0693988834e619dd33d121bf994ed57e8
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Signed-off-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/3683
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/samsung/Kconfig')
-rw-r--r-- | src/cpu/samsung/Kconfig | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/cpu/samsung/Kconfig b/src/cpu/samsung/Kconfig index 54f4ed1a21..ae37403e5d 100644 --- a/src/cpu/samsung/Kconfig +++ b/src/cpu/samsung/Kconfig @@ -1,24 +1,2 @@ -config CPU_SAMSUNG_EXYNOS5250 - depends on ARCH_ARMV7 - select HAVE_MONOTONIC_TIMER - select HAVE_UART_SPECIAL - select DEFAULT_BOOTBLOCK_CONSOLE - select DEFAULT_EARLY_CONSOLE - bool - default n - -config CPU_SAMSUNG_EXYNOS5420 - depends on ARCH_ARMV7 - select HAVE_MONOTONIC_TIMER - select HAVE_UART_SPECIAL - select DEFAULT_EARLY_CONSOLE - bool - default n - -if CPU_SAMSUNG_EXYNOS5250 source src/cpu/samsung/exynos5250/Kconfig -endif - -if CPU_SAMSUNG_EXYNOS5420 source src/cpu/samsung/exynos5420/Kconfig -endif |