summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaylynn Knight2026-02-08 09:23:08 +0000
committerHauke Mehrtens2026-02-12 22:55:29 +0000
commitd0c82dbb177b33543de8bf6d537436b889273720 (patch)
tree207da4f522a6322644e83aa31d18a990d4c906b6
parent0f713d5d112389fab497269c78c64cc69c930065 (diff)
downloadopenwrt-d0c82dbb177b33543de8bf6d537436b889273720.tar.gz
x86: base-files add support for Sophos 210r3 and 230r2
This fixes a previous commit for Sophos XG 210r3 which was missing board_name mapping and adds support for the SG related version and the XG/SG 230r2 which is the same hardware with a faster processor. Sophos board_name mapping was modified to support all Sophos SG/XG devices. Sophos SG/XG 210r3 and SG/XG 230r2 are rackmounted x86 based firewall with 6 RJ-45 gigabit ethernet ports (eth0-5) and 2 SFP gigabit ethernet ports (eth6, eth7) all running Intel NICs supported by igb driver. The 210r3 and 230r2 only differ in the processor used. This board update maps eth1 (marked as WAN) as wan and eth0 and eth2-5 as lan. Leaving the two SFP ports unmapped. Fixes: 4880e8e338fc ("x86: add board mapping for Sophos XG 210r3") Signed-off-by: Raylynn Knight <rayknight@me.com> Link: https://github.com/openwrt/openwrt/pull/21959 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--target/linux/x86/base-files/etc/board.d/02_network5
-rw-r--r--target/linux/x86/base-files/lib/preinit/01_sysinfo4
2 files changed, 6 insertions, 3 deletions
diff --git a/target/linux/x86/base-files/etc/board.d/02_network b/target/linux/x86/base-files/etc/board.d/02_network
index 985c2b79aa..abe14791ae 100644
--- a/target/linux/x86/base-files/etc/board.d/02_network
+++ b/target/linux/x86/base-files/etc/board.d/02_network
@@ -127,8 +127,9 @@ sophos-sg-135r3|sophos-xg-135r3| \
sophos-sg-135wr3|sophos-xg-135wr3)
ucidef_set_interfaces_lan_wan "eth0 eth1 eth2 eth3 eth5 eth7 eth8" "eth6"
;;
-sophos-xg-210r3)
- ucidef_set_interfaces_lan_wan "eth1 eth2 eth3 eth4 eth5 eth6 eth7" "eth0"
+sophos-sg-210r3|sophos-xg-210r3| \
+sophos-sg-230r2|sophox-xg-230r2)
+ ucidef_set_interfaces_lan_wan "eth0 eth2 eth3 eth4 eth5" "eth1"
;;
supermicro-sys-e302-9d)
ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth4 eth5 eth6 eth7"
diff --git a/target/linux/x86/base-files/lib/preinit/01_sysinfo b/target/linux/x86/base-files/lib/preinit/01_sysinfo
index 0714a9a39f..054c4b3417 100644
--- a/target/linux/x86/base-files/lib/preinit/01_sysinfo
+++ b/target/linux/x86/base-files/lib/preinit/01_sysinfo
@@ -38,7 +38,9 @@ do_sysinfo_x86() {
local product_version
product_version="$(cat /sys/devices/virtual/dmi/id/product_version 2>/dev/null)"
case "$product_version" in
- 105*|115*|125*|135*|85*|86*)
+ 105*|106*|115*|125*|135*| \
+ 210*|230*|310*|330*|430*|450*| \
+ 550*|650*|750*|85*|86*)
product="${product}-${product_version}"
break
;;