mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
a2e3b05e16
This adds basic support to Intel Cougar Canyon 2 board, a board based on Chief River platform with an Ivy Bridge processor and a Panther Point chipset. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
25 lines
389 B
Makefile
25 lines
389 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
dtb-y += bayleybay.dtb \
|
|
chromebook_link.dtb \
|
|
chromebox_panther.dtb \
|
|
cougarcanyon2.dtb \
|
|
crownbay.dtb \
|
|
efi.dtb \
|
|
galileo.dtb \
|
|
minnowmax.dtb \
|
|
qemu-x86_i440fx.dtb \
|
|
qemu-x86_q35.dtb \
|
|
broadwell_som-6896.dtb
|
|
|
|
targets += $(dtb-y)
|
|
|
|
DTC_FLAGS += -R 4 -p 0x1000
|
|
|
|
PHONY += dtbs
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
@:
|
|
|
|
clean-files := *.dtb
|