These devices aren't broken and their build shouldn't have been disabled.
Fixes: 2566781 ("airoha: an7583: remove source-only flag")
Link: https://github.com/openwrt/openwrt/pull/23809#issuecomment-5011321092
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/24285
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
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_an7583-evb
|
|
$(call Device/FitImageLzma)
|
|
DEVICE_VENDOR := Airoha
|
|
DEVICE_MODEL := AN7583 Evaluation Board (SNAND)
|
|
DEVICE_PACKAGES := kmod-phy-aeonsemi-as21xxx kmod-leds-pwm \
|
|
kmod-pwm-airoha kmod-input-gpio-keys-polled
|
|
DEVICE_DTS := an7583-evb
|
|
DEVICE_DTS_CONFIG := config@1
|
|
IMAGE/sysupgrade.bin := append-kernel | pad-to 128k | append-rootfs | \
|
|
pad-rootfs | append-metadata
|
|
endef
|
|
TARGET_DEVICES += airoha_an7583-evb
|
|
|
|
define Device/airoha_an7583-evb-emmc
|
|
DEVICE_VENDOR := Airoha
|
|
DEVICE_MODEL := AN7583 Evaluation Board (EMMC)
|
|
DEVICE_DTS := an7583-evb-emmc
|
|
DEVICE_PACKAGES := kmod-phy-airoha-en8811h kmod-i2c-an7581
|
|
endef
|
|
TARGET_DEVICES += airoha_an7583-evb-emmc
|
|
|
|
define Device/nokia_xg-040g-mf
|
|
$(call Device/FitImageLzma)
|
|
DEVICE_VENDOR := Nokia
|
|
DEVICE_MODEL := XG-040G-MF
|
|
DEVICE_DTS := an7583-nokia_xg-040g-mf
|
|
DEVICE_DTS_CONFIG := config@1
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
UBINIZE_OPTS := -E 5
|
|
IMAGE_SIZE := 131968k
|
|
KERNEL_SIZE := 8192k
|
|
IMAGES += factory-kernel.bin factory-rootfs.bin
|
|
IMAGE/factory-kernel.bin := append-kernel
|
|
IMAGE/factory-rootfs.bin := append-ubi | check-size
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
DEVICE_PACKAGES := kmod-phy-airoha-en8811h
|
|
endef
|
|
TARGET_DEVICES += nokia_xg-040g-mf
|