diff options
| author | Shiji Yang | 2025-02-02 08:50:04 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-19 21:09:57 +0000 |
| commit | 79c84867fb297dea250fcf8830cf31094b689c7a (patch) | |
| tree | aec7b6c883b6fe2cb0be3ceb9dc446ef9ffeb919 | |
| parent | 41934223776dc45e410ac372c6713e6a2713ff33 (diff) | |
| download | openwrt-79c84867fb297dea250fcf8830cf31094b689c7a.tar.gz | |
airoha: 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/airoha/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/airoha/image/Makefile b/target/linux/airoha/image/Makefile index f3547ae330..823714309d 100644 --- a/target/linux/airoha/image/Makefile +++ b/target/linux/airoha/image/Makefile @@ -8,7 +8,7 @@ define Device/Default KERNEL = kernel-bin | lzma | \ fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb KERNEL_INITRAMFS = kernel-bin | lzma | \ - fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb with-initrd + fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb FILESYSTEMS := squashfs DEVICE_DTS = $$(SOC)-$(lastword $(subst _, ,$(1))) DEVICE_DTS_DIR := ../dts |