[openwrt/openwrt] realtek: add and use netgear_nge for the GS110PP v1

LEDE Commits lede-commits at lists.infradead.org
Fri Feb 12 02:53:00 EST 2021


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/9877393fd135f247f58bd4dc6f1532f77f1c40c8

commit 9877393fd135f247f58bd4dc6f1532f77f1c40c8
Author: Michael Mohr <akihana at gmail.com>
AuthorDate: Fri Jan 8 21:21:15 2021 -0800

    realtek: add and use netgear_nge for the GS110PP v1
    
    The netgear_nge device will be shared between the GS108T v3 (to be added
    in a later commit) and the GS110PP v1.  It also enables LZMA compression
    for the ramdisk image.
    
    Signed-off-by: Michael Mohr <akihana at gmail.com>
---
 target/linux/realtek/image/Makefile | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/target/linux/realtek/image/Makefile b/target/linux/realtek/image/Makefile
index 29350d8ae5..c875aca2a6 100644
--- a/target/linux/realtek/image/Makefile
+++ b/target/linux/realtek/image/Makefile
@@ -25,6 +25,16 @@ define Device/Default
 	append-metadata | check-size
 endef
 
+# "NGE" refers to the uImage magic
+define Device/netgear_nge
+  KERNEL := kernel-bin | append-dtb | lzma | uImage lzma
+  KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | uImage lzma
+  SOC := rtl8380
+  IMAGE_SIZE := 14848k
+  UIMAGE_MAGIC := 0x4e474520
+  DEVICE_VENDOR := NETGEAR
+endef
+
 define Device/allnet_all-sg8208m
   SOC := rtl8382
   IMAGE_SIZE := 7168k
@@ -61,12 +71,8 @@ endef
 TARGET_DEVICES += d-link_dgs-1210-28
 
 define Device/netgear_gs110tpp-v1
-  $(Device/Default)
-  SOC := rtl8380
-  IMAGE_SIZE := 14848k
-  UIMAGE_MAGIC := 0x4e474520
-  DEVICE_VENDOR := NETGEAR
-  DEVICE_MODEL := GS110TP
+  $(Device/netgear_nge)
+  DEVICE_MODEL := GS110TPP
   DEVICE_VARIANT := v1
 endef
 TARGET_DEVICES += netgear_gs110tpp-v1



More information about the lede-commits mailing list