From 54b275c8ed3ad20c447fd46deec83384822ac79d Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 21 Feb 2018 20:40:50 +0100 Subject: ipq40xx: add target Signed-off-by: Christian Lamparter Signed-off-by: Mathias Kresin Signed-off-by: John Crispin --- .../ipq40xx/base-files/etc/board.d/02_network | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 target/linux/ipq40xx/base-files/etc/board.d/02_network (limited to 'target/linux/ipq40xx/base-files/etc/board.d/02_network') diff --git a/target/linux/ipq40xx/base-files/etc/board.d/02_network b/target/linux/ipq40xx/base-files/etc/board.d/02_network new file mode 100755 index 0000000000..37f81a398a --- /dev/null +++ b/target/linux/ipq40xx/base-files/etc/board.d/02_network @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Copyright (c) 2015 The Linux Foundation. All rights reserved. +# Copyright (c) 2011-2015 OpenWrt.org +# + +. /lib/functions/uci-defaults.sh +. /lib/functions/system.sh + +board_config_update + +board=$(board_name) + +case "$board" in +avm,fritzbox-4040) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ucidef_add_switch "switch0" \ + "0u@eth0" "1:lan" "2:lan" "3:lan" "4:lan" + ;; +glinet,gl-b1300 |\ +openmesh,a42) + ucidef_set_interfaces_lan_wan "eth1" "eth0" + ;; +*) + echo "Unsupported hardware. Network interfaces not intialized" + ;; +esac + +board_config_flush + +exit 0 -- cgit v1.2.3