mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
68e03ca21a
It is useful to be able to parse coreboot tables on any x86 build which is booted from coreboot. Add a new Kconfig option to enable this feature and move the code so it can be used on any board, if enabled. Signed-off-by: Simon Glass <sjg@chromium.org>
23 lines
459 B
Makefile
23 lines
459 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
#
|
|
# (C) Copyright 2008
|
|
# Graeme Russ, graeme.russ@gmail.com.
|
|
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2002
|
|
# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
|
|
|
|
ifndef CONFIG_SPL
|
|
obj-y += car.o
|
|
endif
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += coreboot_spl.o
|
|
else
|
|
obj-y += sdram.o
|
|
endif
|
|
obj-y += coreboot.o
|
|
obj-y += timestamp.o
|