diff options
| author | Jonas Jelonek | 2026-02-08 00:21:10 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-02-20 23:49:51 +0000 |
| commit | 659719d8cae54ee90fd85a99a2f0972de75a4628 (patch) | |
| tree | f5ddf9b4d913efe001c24b86355feceef23d7c00 | |
| parent | 7f743646724f2f75beb8bcf15ab2e5f0064df555 (diff) | |
| download | openwrt-659719d8cae54ee90fd85a99a2f0972de75a4628.tar.gz | |
realtek: image: make xikestor-nosimg a common recipe
Make xikestor-nosimg a common recipe in the Makefile to allow usage for
other subtargets too, not only rtl930x.
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21922
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/realtek/image/Makefile | 5 | ||||
| -rw-r--r-- | target/linux/realtek/image/rtl930x.mk | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/realtek/image/Makefile b/target/linux/realtek/image/Makefile index 1ff4201bc6..dc7a907709 100644 --- a/target/linux/realtek/image/Makefile +++ b/target/linux/realtek/image/Makefile @@ -108,6 +108,11 @@ define Build/linksys-image mv $@.new $@ endef +define Build/xikestor-nosimg + $(STAGING_DIR_HOST)/bin/nosimg-enc -i $@ -o $@.new + mv $@.new $@ +endef + define Build/zynsig $(STAGING_DIR_HOST)/bin/zynsig -i $@ \ -o $@.new diff --git a/target/linux/realtek/image/rtl930x.mk b/target/linux/realtek/image/rtl930x.mk index 75bd5bf46f..8886a387a8 100644 --- a/target/linux/realtek/image/rtl930x.mk +++ b/target/linux/realtek/image/rtl930x.mk @@ -2,11 +2,6 @@ include ./common.mk -define Build/xikestor-nosimg - $(STAGING_DIR_HOST)/bin/nosimg-enc -i $@ -o $@.new - mv $@.new $@ -endef - define Device/hasivo_s1100w-8xgt-se SOC := rtl9303 DEVICE_VENDOR := Hasivo |