summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2017-11-29 14:27:51 -0800
committerJulius Werner <jwerner@chromium.org>2017-12-06 23:27:03 +0000
commitec477346bfe8f73aac225e9a8c2c5e6438bba593 (patch)
tree5daf39673de0b79406bd7f86ec4846108d96cc75 /Makefile.inc
parent079455f2076969b8419d16c9cb6ee8ea7a020f3c (diff)
downloadcoreboot-ec477346bfe8f73aac225e9a8c2c5e6438bba593.tar.gz
coreboot-ec477346bfe8f73aac225e9a8c2c5e6438bba593.tar.bz2
coreboot-ec477346bfe8f73aac225e9a8c2c5e6438bba593.zip
Kconfig: Remove BOARD_ID_MANUAL option
The BOARD_ID_MANUAL and BOARD_ID_STRING options were introduced for the Urara board which is now long dead, and have never been used anywhere else. They were trying to do something that we usually handle with a separate SKU ID these days, whereas BOARD_ID is supposed to be reserved for different revisions of the same board/SKU. Get rid of it to make further refactoring of other options easier. Also shove some stuff back into the Urara mainboard that should've never crept into generic headers. Change-Id: I4e7018066eadb38bced96d8eca2ffd4f0dd17110 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/22694 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc7
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 4473bf5d1766..f93b4bd584d4 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -999,13 +999,6 @@ cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash$(BOOTSPLASH_SUFFIX)
bootsplash$(BOOTSPLASH_SUFFIX)-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
bootsplash$(BOOTSPLASH_SUFFIX)-type := bootsplash
-cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
-board_id-file := $(obj)/board_id
-board_id-type := raw
-
-$(obj)/board_id:
- printf $(CONFIG_BOARD_ID_STRING) > $@
-
# Ensure that no payload segment overlaps with memory regions used by ramstage
# (not for x86 since it can relocate itself in that case)
ifneq ($(CONFIG_ARCH_X86),y)