diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2021-04-17 10:10:27 +0900 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-03-07 21:44:53 +0100 |
commit | 7b19770525bcb10c82bd6fd769b8db574ac9087f (patch) | |
tree | 5aaf1f1fb6af7097e2e4f8278ff72fc90b56e241 /target/linux/realtek/image/rtl838x.mk | |
parent | d71928c1e36ed0247b2b663ba05b109eb401718f (diff) | |
download | upstream-7b19770525bcb10c82bd6fd769b8db574ac9087f.tar.gz upstream-7b19770525bcb10c82bd6fd769b8db574ac9087f.tar.bz2 upstream-7b19770525bcb10c82bd6fd769b8db574ac9087f.zip |
realtek: add support for I-O DATA BSH-G24MB
I-O DATA BSH-G24MB is a 24 port gigabit switch, based on RTL8382M.
Specification:
- SoC : Realtek RTL8382M
- RAM : DDR2 128 MiB (Nanya NT5TU128M8HE-AC)
- Flash : SPI-NOR 16 MiB (Macronix MX25L12835FM2I-10G)
- Ethernet : 10/100/1000 Mbps x24
- port 1-8 : RTL8218B
- port 9-16 : RTL8218B (SoC)
- port 17-24 : RTL8218B
- LEDs/Keys : 2x, 1x
- UART : pin header on PCB
- JP2: 3.3V, TX, RX, GND from rear side
- 115200n8
- Power : 100 VAC, 50/60 Hz
- Plug : IEC 60320-C13
Flash instruction using sysupgrade image:
1. Boot BSH-G24MB normally
2. Connect BSH-G24MB to the DHCP enabled network
3. Find the device's IP address and open the WebUI and login
Note: by default, the device obtains IP address from DHCP server of
the network
4. Open firmware update page ("ファームウェア アップデート")
5. Rename the OpenWrt sysupgrade image to "bsh-g24mb_v100.image" and
select it
6. Press apply ("適用") button to perform update
7. Wait ~150 seconds to complete flashing
Note:
- BSH-G24MB has a power-related LED ("電源"), but it's not connected to
the GPIO of the SoC or RTL8231 and cannot be controlled. Instead of
it, use system status LED on other than running-state.
- "sys_loop" LED indicates system status and loop-detection status in
stock firmware.
- BSH-G24MB has 2x os-image partitions named as "RUNTIME"/"RUNTIME2" in
16 MiB SPI-NOR flash and the size of image per partition is only
6848 KiB. The secondary image is never used on stock firmware, so also
use it on OpenWrt to get more space.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/realtek/image/rtl838x.mk')
-rw-r--r-- | target/linux/realtek/image/rtl838x.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/realtek/image/rtl838x.mk b/target/linux/realtek/image/rtl838x.mk index 6f0e8988f9..43242d3eea 100644 --- a/target/linux/realtek/image/rtl838x.mk +++ b/target/linux/realtek/image/rtl838x.mk @@ -45,6 +45,15 @@ define Device/inaba_aml2-17gp endef TARGET_DEVICES += inaba_aml2-17gp +define Device/iodata_bsh-g24mb + SOC := rtl8382 + IMAGE_SIZE := 13696k + DEVICE_VENDOR := I-O DATA + DEVICE_MODEL := BSH-G24MB + UIMAGE_MAGIC := 0x83800013 +endef +TARGET_DEVICES += iodata_bsh-g24mb + define Device/netgear_gs108t-v3 $(Device/netgear_nge) DEVICE_MODEL := GS108T |