mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00

我只是执行者,有问题请找 “Redmi ax6 机友会”(522966467)里面的群主 和陈超(269806631)等狗管理和伪君子反馈。 I'm just an executor. If you have any questions, please contact the group owner and Chen Chao (269806631) management and hypocrites in the "Redmi ax6 Friends Club" (522966467) for feedback. 私はただの遺言執行者です。ご不明な点がございましたら、グループのオ ーナーである Chen Chao(269806631)や、「Redmi ax6 Friends Club」 (522966467)の他のマネージャーや偽善者にお問い合わせください。 Unanimous approval from the entire development team. Ref: https://t.me/chenchao_rip/4 Cc: lean <coolsnowwolf@gmail.com> Cc: asushugo <429632952@163.com> CC: CN_SZTL <cnsztl@immortalwrt.org> Cc: AmadeusGhost <amadeus@immortalwrt.org>
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
define Device/FitImage
|
|
KERNEL_SUFFIX := -fit-uImage.itb
|
|
KERNEL = kernel-bin | gzip | fit gzip $$(DEVICE_DTS_DIR)/$$(DEVICE_DTS).dtb
|
|
KERNEL_NAME := Image
|
|
endef
|
|
|
|
define Device/FitImageLzma
|
|
KERNEL_SUFFIX := -fit-uImage.itb
|
|
KERNEL = kernel-bin | lzma | fit lzma $$(DEVICE_DTS_DIR)/$$(DEVICE_DTS).dtb
|
|
KERNEL_NAME := Image
|
|
endef
|
|
|
|
define Device/UbiFit
|
|
KERNEL_IN_UBI := 1
|
|
IMAGES := nand-factory.ubi nand-sysupgrade.bin
|
|
IMAGE/nand-factory.ubi := append-ubi
|
|
IMAGE/nand-sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
endef
|
|
|
|
define Device/qnap_301w
|
|
$(call Device/FitImage)
|
|
DEVICE_VENDOR := QNAP
|
|
DEVICE_MODEL := 301w
|
|
DEVICE_DTS_CONFIG := config@hk01
|
|
KERNEL_SIZE := 16384k
|
|
BLOCKSIZE := 512k
|
|
SOC := ipq8072
|
|
IMAGES += factory.bin sysupgrade.bin
|
|
IMAGE/factory.bin := append-rootfs | pad-rootfs | pad-to 64k
|
|
IMAGE/sysupgrade.bin/squashfs := append-rootfs | pad-to 64k | sysupgrade-tar rootfs=$$$$@ | append-metadata
|
|
DEVICE_PACKAGES := ipq-wifi-qnap_301w e2fsprogs kmod-fs-ext4 losetup
|
|
endef
|
|
TARGET_DEVICES += qnap_301w
|
|
|
|
define Device/zte_mf269
|
|
$(call Device/FitImage)
|
|
$(call Device/UbiFit)
|
|
DEVICE_VENDOR := ZTE
|
|
DEVICE_MODEL := MF269
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
DEVICE_DTS_CONFIG := config@ac04
|
|
SOC := ipq8071
|
|
DEVICE_PACKAGES := ipq-wifi-zte_mf269 uboot-envtools
|
|
endef
|
|
TARGET_DEVICES += zte_mf269
|