mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
368cd88c44
The IMX device-tree's for arm moved from arch/arm/boot/dts to arch/arm/boot/dts/nxp/imx. Use that if using the 6.6 kernel. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
34 lines
1018 B
Makefile
34 lines
1018 B
Makefile
DEVICE_VARS += UBOOT
|
|
|
|
include common.mk
|
|
|
|
define Device/Default
|
|
PROFILES := Default
|
|
FILESYSTEMS := squashfs ext4
|
|
KERNEL_INSTALL := 1
|
|
KERNEL_SUFFIX := -uImage
|
|
KERNEL_NAME := zImage
|
|
KERNEL := kernel-bin | uImage none
|
|
KERNEL_LOADADDR := 0x80008000
|
|
ifdef CONFIG_LINUX_6_6
|
|
DTS_DIR := $(DTS_DIR)/nxp/imx
|
|
endif
|
|
IMAGES :=
|
|
endef
|
|
|
|
define Device/technexion_imx7d-pico-pi
|
|
DEVICE_VENDOR := TechNexion
|
|
DEVICE_MODEL := PICO-PI-IMX7D
|
|
UBOOT := pico-pi-imx7d
|
|
DEVICE_DTS := imx7d-pico-pi
|
|
DEVICE_PACKAGES := kmod-sound-core kmod-sound-soc-imx kmod-sound-soc-imx-sgtl5000 \
|
|
kmod-can kmod-can-flexcan kmod-can-raw kmod-leds-gpio \
|
|
kmod-input-touchscreen-edt-ft5x06 kmod-usb-hid kmod-btsdio \
|
|
kmod-brcmfmac brcmfmac-firmware-4339-sdio cypress-nvram-4339-sdio
|
|
FILESYSTEMS := squashfs
|
|
IMAGES := combined.bin sysupgrade.bin
|
|
IMAGE/combined.bin := append-rootfs | pad-extra 128k | imx-sdcard-raw-uboot
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
endef
|
|
TARGET_DEVICES += technexion_imx7d-pico-pi
|