diff options
author | Kristian Evensen <kristian.evensen@gmail.com> | 2017-06-05 10:24:02 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-06-06 23:01:53 +0200 |
commit | 1898f7339fc6a6f39e093562f2c4b6de534ef4db (patch) | |
tree | 9ad2602f89fc9d0205b287359d68bb5db4023bba /target/linux/x86 | |
parent | f50079985c97404d62a208f2937ad6afd3f07f0f (diff) | |
download | upstream-1898f7339fc6a6f39e093562f2c4b6de534ef4db.tar.gz upstream-1898f7339fc6a6f39e093562f2c4b6de534ef4db.tar.bz2 upstream-1898f7339fc6a6f39e093562f2c4b6de534ef4db.zip |
Add missing APU1 reference to x86 board.d
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>
Diffstat (limited to 'target/linux/x86')
-rwxr-xr-x | target/linux/x86/base-files/etc/board.d/01_leds | 2 | ||||
-rwxr-xr-x | target/linux/x86/base-files/etc/board.d/02_network | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/x86/base-files/etc/board.d/01_leds b/target/linux/x86/base-files/etc/board.d/01_leds index 03df810972..6a5ff03b37 100755 --- a/target/linux/x86/base-files/etc/board.d/01_leds +++ b/target/linux/x86/base-files/etc/board.d/01_leds @@ -10,7 +10,7 @@ board_config_update board=$(cat /tmp/sysinfo/board_name) 2>/dev/null case "$board" in -pc-engines-apu2) +pc-engines-apu|pc-engines-apu2) ucidef_set_led_netdev "wan" "WAN" "apu2:green:led3" "eth0" ucidef_set_led_netdev "lan" "LAN" "apu2:green:led2" "br-lan" ucidef_set_led_default "diag" "DIAG" "apu2:green:power" "1" 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 c2af64336b..5bfe609740 100755 --- a/target/linux/x86/base-files/etc/board.d/02_network +++ b/target/linux/x86/base-files/etc/board.d/02_network @@ -11,7 +11,7 @@ board_config_update board="$(cat /tmp/sysinfo/board_name)" 2>/dev/null case "$board" in -pc-engines-apu2) +pc-engines-apu|pc-engines-apu2) ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0" ;; traverse-technologies-geos) |