mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-08 03:50:48 +00:00
x86/base-files: add support for Sophos SG/XG-105
This adds detection of the Sophos SG-105 and Sophos XG-105 models and assignment of ethernet ports these models have to LAN/WAN. Signed-off-by: Stan Grishin <stangri@melmac.net> Signed-off-by: maurerr <mariusd84@gmail.com>
This commit is contained in:
parent
7956cdf5b0
commit
1494d47378
@ -11,6 +11,9 @@ case "$(board_name)" in
|
|||||||
pc-engines-apu1|pc-engines-apu2|pc-engines-apu3)
|
pc-engines-apu1|pc-engines-apu2|pc-engines-apu3)
|
||||||
ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0"
|
ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0"
|
||||||
;;
|
;;
|
||||||
|
sophos-sg-105|sophos-xg-105)
|
||||||
|
ucidef_set_interfaces_lan_wan "eth0 eth2 eth3" "eth1"
|
||||||
|
;;
|
||||||
traverse-technologies-geos)
|
traverse-technologies-geos)
|
||||||
ucidef_set_interface_lan "eth0 eth1"
|
ucidef_set_interface_lan "eth0 eth1"
|
||||||
ucidef_add_atm_bridge "0" "35" "llc" "bridged"
|
ucidef_add_atm_bridge "0" "35" "llc" "bridged"
|
||||||
|
@ -22,6 +22,14 @@ do_sysinfo_x86() {
|
|||||||
product="apu1"
|
product="apu1"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
"Sophos:SG"|"Sophos:XG")
|
||||||
|
case "$(cat /sys/devices/virtual/dmi/id/product_version 2>/dev/null)" in
|
||||||
|
105*)
|
||||||
|
product="${product}-105"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
"Supermicro:Super Server")
|
"Supermicro:Super Server")
|
||||||
continue
|
continue
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user