mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
43294e67d6
At present broadwell only supports booting straight into U-Boot proper. Add a separate init file to boot from SPL into U-Boot proper, and select it when SPL is in use. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
32 lines
575 B
Makefile
32 lines
575 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
|
|
obj-y += adsp.o
|
|
obj-y += cpu.o
|
|
obj-y += cpu_full.o
|
|
|
|
ifdef CONFIG_SPL
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += cpu_from_spl.o
|
|
obj-y += cpu_full.o
|
|
endif
|
|
ifndef CONFIG_SPL_BUILD
|
|
# obj-y += cpu_from_spl.o
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_$(SPL_TPL_)X86_32BIT_INIT),)
|
|
#obj-y += cpu_from_spl.o
|
|
endif
|
|
|
|
obj-y += iobp.o
|
|
obj-y += lpc.o
|
|
obj-y += me.o
|
|
obj-y += northbridge.o
|
|
obj-y += pch.o
|
|
obj-y += pinctrl_broadwell.o
|
|
obj-y += power_state.o
|
|
obj-y += refcode.o
|
|
obj-y += sata.o
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += sdram.o
|