diff options
| author | Shiji Yang | 2025-02-02 08:50:25 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-19 21:09:57 +0000 |
| commit | a926c5518ec0dc7b1e92b0d2e201692cb3f9c3ef (patch) | |
| tree | 7388e747620329d41acdd5d9ee101e81bc9fde8a | |
| parent | 79c84867fb297dea250fcf8830cf31094b689c7a (diff) | |
| download | openwrt-a926c5518ec0dc7b1e92b0d2e201692cb3f9c3ef.tar.gz | |
ramips: drop unsupported fit image option with-initrd
This option will only take effect when the "separate_ramdisk"
feature was enabled. However, this target does not support
this feature. It is an obvious copy and paste issue.
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/17832
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ramips/image/mt7621.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk index 532aad4b7b..abf9ba4025 100644 --- a/target/linux/ramips/image/mt7621.mk +++ b/target/linux/ramips/image/mt7621.mk @@ -2870,7 +2870,7 @@ define Device/tplink_eap613-v1 DEVICE_PACKAGES := kmod-mt7915-firmware -uboot-envtools TPLINK_BOARD_ID := EAP610-V3 KERNEL := kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb | pad-to 64k - KERNEL_INITRAMFS := kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb with-initrd + KERNEL_INITRAMFS := kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb IMAGE_SIZE := 13248k endef TARGET_DEVICES += tplink_eap613-v1 @@ -2883,7 +2883,7 @@ define Device/tplink_eap615-wall-v1 DEVICE_PACKAGES := kmod-mt7915-firmware -uboot-envtools TPLINK_BOARD_ID := EAP615-WALL-V1 KERNEL := kernel-bin | lzma -d22 | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb | pad-to 64k - KERNEL_INITRAMFS := kernel-bin | lzma -d22 | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb with-initrd + KERNEL_INITRAMFS := kernel-bin | lzma -d22 | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb IMAGE_SIZE := 13248k endef TARGET_DEVICES += tplink_eap615-wall-v1 |