lantiq: td-w8970: fix failsafe mode
authorJohn Crispin <john@openwrt.org>
Mon, 9 Feb 2015 12:14:48 +0000 (12:14 +0000)
committerJohn Crispin <john@openwrt.org>
Mon, 9 Feb 2015 12:14:48 +0000 (12:14 +0000)
Fix failsafe mode for TD-W8970, register interface for preinit.

Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
SVN-Revision: 44353

target/linux/lantiq/base-files/lib/preinit/05_set_preinit_iface_lantiq [new file with mode: 0644]

diff --git a/target/linux/lantiq/base-files/lib/preinit/05_set_preinit_iface_lantiq b/target/linux/lantiq/base-files/lib/preinit/05_set_preinit_iface_lantiq
new file mode 100644 (file)
index 0000000..3d7fabf
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+. /lib/functions/lantiq.sh
+
+set_preinit_iface() {
+
+       board=$(lantiq_board_name)
+
+       case "$board" in
+       TDW8970)
+               ifname=eth0
+               ;;
+       esac
+
+}
+
+boot_hook_add preinit_main set_preinit_iface
+