mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 22:03:15 +00:00
45cc9e4cc5
This doesn't work at present. Disable it for now. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
20 lines
382 B
Makefile
20 lines
382 B
Makefile
#
|
|
# Copyright (c) 2014 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_HAVE_FSP
|
|
obj-y += fsp_configs.o ivybridge.o
|
|
else
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += cpu.o
|
|
obj-y += early_me.o
|
|
obj-y += lpc.o
|
|
obj-y += model_206ax.o
|
|
obj-y += northbridge.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += sata.o
|
|
endif
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += sdram.o
|
|
endif
|
|
obj-y += bd82x6x.o
|