From ec477346bfe8f73aac225e9a8c2c5e6438bba593 Mon Sep 17 00:00:00 2001 From: Julius Werner Date: Wed, 29 Nov 2017 14:27:51 -0800 Subject: 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 Reviewed-on: https://review.coreboot.org/22694 Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/lib/coreboot_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index f152f341ff..29dd53afad 100644 --- a/src/lib/coreboot_table.c +++ b/src/lib/coreboot_table.c @@ -246,7 +246,7 @@ static inline void lb_vboot_handoff(struct lb_header *header) {} static void lb_board_id(struct lb_header *header) { -#if IS_ENABLED(CONFIG_BOARD_ID_AUTO) || IS_ENABLED(CONFIG_BOARD_ID_MANUAL) +#if IS_ENABLED(CONFIG_BOARD_ID_AUTO) struct lb_board_id *bid; bid = (struct lb_board_id *)lb_new_record(header); -- cgit v1.2.3