1898f7339f
x86 board.d only contains a case for the APU2, not the APU1. This causes, for example, network configuration not to be created correctly. Even though the APU1 seems to reaching EOL, there a still a lot of them out there. The APU1 and APU2 is configured in the same way and this patch should also be considered for stable, as the error also exists there. Signed-off-by: Kristian Evensen <kristian.evensen@gmail.com>
27 lines
600 B
Bash
Executable file
27 lines
600 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright © 2017 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/system.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
board="$(cat /tmp/sysinfo/board_name)" 2>/dev/null
|
|
|
|
case "$board" in
|
|
pc-engines-apu|pc-engines-apu2)
|
|
ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0"
|
|
;;
|
|
traverse-technologies-geos)
|
|
ucidef_set_interface_lan "eth0 eth1"
|
|
ucidef_add_atm_bridge "0" "35" "llc" "bridged"
|
|
ucidef_set_interface_wan "nas0" "dhcp"
|
|
macaddr="$(cat /sys/class/net/eth0/address)" 2>/dev/null
|
|
[ -n "$macaddr" ] && ucidef_set_interface_macaddr "wan" "$macaddr"
|
|
;;
|
|
esac
|
|
board_config_flush
|
|
|
|
exit 0
|