1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-18 05:03:56 +02:00
openwrt/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx
John Crispin b98205c946 ar71xx: Add support for AP147-010 reference board
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>

SVN-Revision: 46457
2015-07-24 09:09:42 +00:00

56 lines
675 B
Bash

#!/bin/sh
#
# Copyright (C) 2009 OpenWrt.org
#
. /lib/ar71xx.sh
set_preinit_iface() {
case $(ar71xx_board_name) in
alfa-ap96 |\
alfa-nx |\
ap135-020 |\
ap136-020 |\
ap147-010 |\
ap83 |\
archer-c5 |\
archer-c7 |\
dir-505-a1 |\
gl-inet |\
jwap003 |\
pb42 |\
pb44 |\
rb-433 |\
rb-433u |\
rb-435g |\
rb-450 |\
rb-450g |\
routerstation |\
routerstation-pro |\
smart-300 |\
tl-mr3420-v2 |\
tl-wdr4900-v2 |\
tl-wr1043nd-v2 |\
tl-wr710n |\
tl-wr720n-v3 |\
tl-wr841n-v8 |\
tl-wr842n-v2 |\
wnr2000-v3 |\
wnr2200 |\
wnr612-v2 |\
wnr1000-v2 |\
wpe72)
ifname=eth1
;;
*)
ifname=eth0
;;
esac
}
boot_hook_add preinit_main set_preinit_iface