summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/common/Makefile.inc
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-10-11 21:14:59 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2013-10-22 21:35:05 +0200
commitac164057993e9edbfe78537efbbc9ef5f75cd67c (patch)
tree9a0de6d32cd779b6fc36a4a21c75e8e18b7b5bde /src/southbridge/intel/common/Makefile.inc
parent569ad760cc4d7e3595bd9d4f569d08b021a64663 (diff)
downloadcoreboot-ac164057993e9edbfe78537efbbc9ef5f75cd67c.tar.gz
coreboot-ac164057993e9edbfe78537efbbc9ef5f75cd67c.tar.bz2
coreboot-ac164057993e9edbfe78537efbbc9ef5f75cd67c.zip
usbdebug: Fix boards without EARLY_CBMEM_INIT
The main usbdebug file lib/usbdebug.c was removed from romstage build with commit f8bf5a10 but the chipset-specific parts were not, leading to unresolved symbol errors for AMD platforms. Add a silent Kconfig variable USBDEBUG_IN_ROMSTAGE for convenient use of this feature. Change-Id: I0cd3fccf2612cf08497aa5c3750c89bf43ff69be Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3983 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/southbridge/intel/common/Makefile.inc')
-rw-r--r--src/southbridge/intel/common/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/common/Makefile.inc b/src/southbridge/intel/common/Makefile.inc
index 91b63806465c..4374ebcb4329 100644
--- a/src/southbridge/intel/common/Makefile.inc
+++ b/src/southbridge/intel/common/Makefile.inc
@@ -17,5 +17,5 @@
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
-romstage-$(CONFIG_USBDEBUG) += usb_debug.c
+romstage-$(CONFIG_USBDEBUG_IN_ROMSTAGE) += usb_debug.c
ramstage-$(CONFIG_USBDEBUG) += usb_debug.c