mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-11 15:33:03 +00:00
28 lines
909 B
Makefile
28 lines
909 B
Makefile
|
define Device/FitImageLzma
|
||
|
KERNEL_SUFFIX := -uImage.itb
|
||
|
KERNEL = kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(DEVICE_DTS).dtb
|
||
|
KERNEL_NAME := Image
|
||
|
endef
|
||
|
|
||
|
define Device/airoha_en7581-evb
|
||
|
$(call Device/FitImageLzma)
|
||
|
DEVICE_VENDOR := Airoha
|
||
|
DEVICE_MODEL := EN7581 Evaluation Board (SNAND)
|
||
|
DEVICE_PACKAGES := kmod-leds-pwm kmod-i2c-en7581 kmod-pwm-airoha kmod-input-gpio-keys-polled
|
||
|
DEVICE_DTS := en7581-evb
|
||
|
DEVICE_DTS_DIR := ../dts
|
||
|
DEVICE_DTS_CONFIG := config@1
|
||
|
KERNEL_LOADADDR := 0x80088000
|
||
|
IMAGE/sysupgrade.bin := append-kernel | pad-to 128k | append-rootfs | pad-rootfs | append-metadata
|
||
|
endef
|
||
|
TARGET_DEVICES += airoha_en7581-evb
|
||
|
|
||
|
define Device/airoha_en7581-evb-emmc
|
||
|
DEVICE_VENDOR := Airoha
|
||
|
DEVICE_MODEL := EN7581 Evaluation Board (EMMC)
|
||
|
DEVICE_DTS := en7581-evb-emmc
|
||
|
DEVICE_DTS_DIR := ../dts
|
||
|
DEVICE_PACKAGES := kmod-i2c-en7581
|
||
|
endef
|
||
|
TARGET_DEVICES += airoha_en7581-evb-emmc
|