diff options
author | Martin Roth <gaumless@gmail.com> | 2015-06-20 16:45:30 -0600 |
---|---|---|
committer | Martin Roth <gaumless@gmail.com> | 2015-06-21 21:11:04 +0200 |
commit | a412d399e951860a1b7913d568d390bf5ce47a5a (patch) | |
tree | e04c939e62d479078f611b248dabbc08ef276c96 | |
parent | 64ae446dbca1fbd25395aa4f857caec746613c98 (diff) | |
download | coreboot-a412d399e951860a1b7913d568d390bf5ce47a5a.tar.xz |
Remove obsolete EARLY_CONSOLE usage
The EARLY_CONSOLE Kconfig symbol was removed in
commit 48713a1b - console: Drop EARLY_CONSOLE option
The arm64 and mips directories don't even have early_console.c
to include.
Change-Id: Idc60ffb2bac2b180f4fdd0adf5c411e1f692a846
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: http://review.coreboot.org/10615
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | src/arch/arm64/Makefile.inc | 1 | ||||
-rw-r--r-- | src/arch/mips/Makefile.inc | 1 | ||||
-rw-r--r-- | src/mainboard/emulation/qemu-armv7/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/broadcom/cygnus/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/marvell/bg4cd/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/nvidia/tegra132/Kconfig | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/arm64/Makefile.inc b/src/arch/arm64/Makefile.inc index 13e84159a2..f1d0cb3e66 100644 --- a/src/arch/arm64/Makefile.inc +++ b/src/arch/arm64/Makefile.inc @@ -88,7 +88,6 @@ $(objcbfs)/verstage.debug: $(objgenerated)/libverstage.a $$(verstage-objs) @printf " LINK $(subst $(obj)/,,$(@))\n" $(LD_verstage) --gc-sections -static -o $@ -L$(obj) --whole-archive --start-group $(objgenerated)/libverstage.a $$(verstage-objs) --end-group -T $(obj)/mainboard/$(MAINBOARDDIR)/memlayout.verstage.ld -verstage-$(CONFIG_EARLY_CONSOLE) += early_console.c verstage-y += boot.c verstage-y += div0.c verstage-y += eabi_compat.c diff --git a/src/arch/mips/Makefile.inc b/src/arch/mips/Makefile.inc index cff0151406..e3aff0c7d7 100644 --- a/src/arch/mips/Makefile.inc +++ b/src/arch/mips/Makefile.inc @@ -61,7 +61,6 @@ endif # CONFIG_ARCH_BOOTBLOCK_MIPS ifeq ($(CONFIG_ARCH_ROMSTAGE_MIPS),y) romstage-y += boot.c -romstage-$(CONFIG_EARLY_CONSOLE) += early_console.c romstage-y += cache.c romstage-y += mmu.c romstage-y += stages.c diff --git a/src/mainboard/emulation/qemu-armv7/Kconfig b/src/mainboard/emulation/qemu-armv7/Kconfig index 58ddd4ed49..c6199ea521 100644 --- a/src/mainboard/emulation/qemu-armv7/Kconfig +++ b/src/mainboard/emulation/qemu-armv7/Kconfig @@ -26,7 +26,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy select CPU_ARMLTD_CORTEX_A9 select DRIVERS_UART_PL011 select BOOTBLOCK_CONSOLE - select EARLY_CONSOLE select CONSOLE_SERIAL select ARM_BOOTBLOCK_ARMV7 select ARM_ROMSTAGE_ARMV7 diff --git a/src/soc/broadcom/cygnus/Kconfig b/src/soc/broadcom/cygnus/Kconfig index 7c17bd4fde..e6da57c338 100644 --- a/src/soc/broadcom/cygnus/Kconfig +++ b/src/soc/broadcom/cygnus/Kconfig @@ -25,7 +25,6 @@ config SOC_BROADCOM_CYGNUS select ARCH_ROMSTAGE_ARMV7 select ARCH_VERSTAGE_ARMV7 select BOOTBLOCK_CONSOLE - select EARLY_CONSOLE select GENERIC_UDELAY select HAVE_MONOTONIC_TIMER select HAVE_UART_SPECIAL diff --git a/src/soc/marvell/bg4cd/Kconfig b/src/soc/marvell/bg4cd/Kconfig index f2cb16f4df..930645e3d3 100644 --- a/src/soc/marvell/bg4cd/Kconfig +++ b/src/soc/marvell/bg4cd/Kconfig @@ -26,7 +26,6 @@ config SOC_MARVELL_BG4CD select ARCH_VERSTAGE_ARMV7_M select ARM_BOOTBLOCK_CUSTOM if VBOOT_VERIFY_FIRMWARE select BOOTBLOCK_CONSOLE - select EARLY_CONSOLE select GENERIC_UDELAY select HAVE_MONOTONIC_TIMER select GENERIC_GPIO_LIB diff --git a/src/soc/nvidia/tegra132/Kconfig b/src/soc/nvidia/tegra132/Kconfig index be8ae9b2b4..a5df92a044 100644 --- a/src/soc/nvidia/tegra132/Kconfig +++ b/src/soc/nvidia/tegra132/Kconfig @@ -11,7 +11,6 @@ config SOC_NVIDIA_TEGRA132 select GENERIC_UDELAY select HAVE_HARD_RESET select HAVE_UART_SPECIAL - select EARLY_CONSOLE select ARM_BOOTBLOCK_CUSTOM select SMP select ARM64_USE_SECURE_MONITOR |