mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 22:26:40 +07:00
4e38860818
The Pine64 is a cost-efficient development board based on the Allwinner A64 SoC. There are three models: the basic version with Fast Ethernet and 512 MB of DRAM (Pine64) and two Pine64+ versions, which both feature Gigabit Ethernet and additional connectors for touchscreens and a camera. Or as my son put it: "Those are smaller and these are missing." ;-) The two Pine64+ models just differ in the amount of DRAM (1GB vs. 2GB). Since U-Boot will figure out the right size for us and patches the DT accordingly we just need to provide one DT for the Pine64+. Signed-off-by: Andre Przywara <andre.przywara@arm.com> [Maxime: Removed the common DTSI and include directly the pine64 DTS] Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
32 lines
637 B
Makefile
32 lines
637 B
Makefile
dts-dirs += al
|
|
dts-dirs += allwinner
|
|
dts-dirs += altera
|
|
dts-dirs += amd
|
|
dts-dirs += amlogic
|
|
dts-dirs += apm
|
|
dts-dirs += arm
|
|
dts-dirs += broadcom
|
|
dts-dirs += cavium
|
|
dts-dirs += exynos
|
|
dts-dirs += freescale
|
|
dts-dirs += hisilicon
|
|
dts-dirs += marvell
|
|
dts-dirs += mediatek
|
|
dts-dirs += nvidia
|
|
dts-dirs += qcom
|
|
dts-dirs += renesas
|
|
dts-dirs += rockchip
|
|
dts-dirs += socionext
|
|
dts-dirs += sprd
|
|
dts-dirs += xilinx
|
|
dts-dirs += lg
|
|
dts-dirs += zte
|
|
|
|
subdir-y := $(dts-dirs)
|
|
|
|
dtstree := $(srctree)/$(src)
|
|
|
|
dtb-$(CONFIG_OF_ALL_DTBS) := $(patsubst $(dtstree)/%.dts,%.dtb, $(foreach d,$(dts-dirs), $(wildcard $(dtstree)/$(d)/*.dts)))
|
|
|
|
always := $(dtb-y)
|