mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
22fd8b0df6
Since all NVRAM files in external repo are now upstreamed and to lower future maintenance cost, disassociate the package from external source repo. All upstream pending NVRAM files shall be stored locally from now on. Signed-off-by: Kuan-Yi Li <kyli@abysm.org> [Remove outdated URL, add SPDX-License-Identifier] Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
31 lines
971 B
Makefile
31 lines
971 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
|
|
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-pico-pi-imx7d
|
|
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
|