[openwrt/openwrt] uboot-envtools: add support for I-O DATA BSH-G24MB

LEDE Commits lede-commits at lists.infradead.org
Mon Mar 7 13:01:30 PST 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/98113220fa87019c01dfcf08f41730f97323858a

commit 98113220fa87019c01dfcf08f41730f97323858a
Author: INAGAKI Hiroshi <musashino.open at gmail.com>
AuthorDate: Sun Apr 18 10:23:09 2021 +0900

    uboot-envtools: add support for I-O DATA BSH-G24MB
    
    This patch adds the device-specific configuration to u-boot-envtools for
    I-O DATA BSH-G24MB switch.
    
    Signed-off-by: INAGAKI Hiroshi <musashino.open at gmail.com>
---
 package/boot/uboot-envtools/files/realtek | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/package/boot/uboot-envtools/files/realtek b/package/boot/uboot-envtools/files/realtek
index 914d15583b..a609362a53 100644
--- a/package/boot/uboot-envtools/files/realtek
+++ b/package/boot/uboot-envtools/files/realtek
@@ -23,6 +23,14 @@ zyxel,gs1900-24hp-v2)
 	[ -n "$idx2" ] && \
 		ubootenv_add_uci_sys_config "/dev/mtd$idx2" "0x0" "0x1000" "0x10000"
 	;;
+iodata,bsh-g24mb)
+	idx="$(find_mtd_index u-boot-env)"
+	[ -n "$idx" ] && \
+		ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
+	idx2="$(find_mtd_index u-boot-env2)"
+	[ -n "$idx2" ] && \
+		ubootenv_add_uci_sys_config "/dev/mtd$idx2" "0x0" "0x3800" "0x10000"
+	;;
 *)
 	idx="$(find_mtd_index u-boot-env)"
 	[ -n "$idx" ] && \




More information about the lede-commits mailing list