[openwrt/openwrt] x86: Add support for Sophos XG 85 and XG 86 devices
LEDE Commits
lede-commits at lists.infradead.org
Fri Mar 25 18:05:14 PDT 2022
chunkeey pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c7bcbcd49280a79b287cc072cd0ca7de777a7ac4
commit c7bcbcd49280a79b287cc072cd0ca7de777a7ac4
Author: Raylynn Knight <rayknight at me.com>
AuthorDate: Sun Mar 20 23:53:38 2022 -0400
x86: Add support for Sophos XG 85 and XG 86 devices
This commit builds on previous efforts to add support
for Sophos devices.
* Add support for Sophos XG 85 with/without wireless
* Add support for Sophos XG 86 with/without wireless
Tested on Sophos XG 85w rev1 and XG 86 rev 1
Signed-off-by: Raylynn Knight <rayknight at me.com>
---
target/linux/x86/base-files/etc/board.d/02_network | 3 ++-
target/linux/x86/base-files/lib/preinit/01_sysinfo | 2 +-
2 files changed, 3 insertions(+), 2 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 97f002ba08..e4451461db 100644
--- a/target/linux/x86/base-files/etc/board.d/02_network
+++ b/target/linux/x86/base-files/etc/board.d/02_network
@@ -24,7 +24,8 @@ sophos-sg-105wr2|sophos-xg-105wr2| \
sophos-sg-115r1|sophos-xg-115r1| \
sophos-sg-115wr1|sophos-xg-115wr1| \
sophos-sg-115r2|sophos-xg-115r2| \
-sophos-sg-115wr2|sophos-xg-115wr2)
+sophos-sg-115wr2|sophos-xg-115wr2| \
+sophos-xg-85*|sophos-xg-86*)
ucidef_set_interfaces_lan_wan "eth0 eth2 eth3" "eth1"
;;
sophos-sg-125r1|sophos-xg-125r1| \
diff --git a/target/linux/x86/base-files/lib/preinit/01_sysinfo b/target/linux/x86/base-files/lib/preinit/01_sysinfo
index 97e8e003f3..0714a9a39f 100644
--- a/target/linux/x86/base-files/lib/preinit/01_sysinfo
+++ b/target/linux/x86/base-files/lib/preinit/01_sysinfo
@@ -38,7 +38,7 @@ 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*)
+ 105*|115*|125*|135*|85*|86*)
product="${product}-${product_version}"
break
;;
More information about the lede-commits
mailing list