mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
3a23eed4dc
Commitdaefc646e6
("realtek: fix ZyXEL initramfs image generation") fixed a shell expansion issue with zyxel-vers usage. Commit045baca10b
("realtek: deduplicate GS1900 recipes") took care of this for the rtl838x and rtl839x subtargets, but the single device officially supported in rtl930x - the XGS1250-12 - was overlooked. This commit updates the XGS1250-12 build recipe as well. Signed-off-by: Stijn Segers <foss@volatilesystems.org> (cherry picked from commit557db5106c
)
18 lines
352 B
Makefile
18 lines
352 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
define Device/zyxel_xgs1250-12
|
|
SOC := rtl9302
|
|
UIMAGE_MAGIC := 0x93001250
|
|
ZYXEL_VERS := ABWE
|
|
DEVICE_VENDOR := Zyxel
|
|
DEVICE_MODEL := XGS1250-12
|
|
IMAGE_SIZE := 13312k
|
|
KERNEL_INITRAMFS := \
|
|
kernel-bin | \
|
|
append-dtb | \
|
|
gzip | \
|
|
zyxel-vers | \
|
|
uImage gzip
|
|
endef
|
|
TARGET_DEVICES += zyxel_xgs1250-12
|