From 560c530e279fb8ed2a4a23ba371a83870aacb71a Mon Sep 17 00:00:00 2001 From: jow Date: Fri, 18 Jan 2013 12:42:53 +0000 Subject: all targets: use numerically prefixed uci-defaults file names to better control order of execution git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35217 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../mpc83xx/base-files/etc/uci-defaults/02_network | 29 ++++++++++++++++++++++ .../mpc83xx/base-files/etc/uci-defaults/network | 29 ---------------------- 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100755 target/linux/mpc83xx/base-files/etc/uci-defaults/02_network delete mode 100755 target/linux/mpc83xx/base-files/etc/uci-defaults/network (limited to 'target/linux/mpc83xx') diff --git a/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network b/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network new file mode 100755 index 000000000..a3467aaed --- /dev/null +++ b/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network @@ -0,0 +1,29 @@ +#!/bin/sh +# +# Copyright (C) 2012 OpenWrt.org +# + +[ -e /etc/config/network ] && exit 0 + +touch /etc/config/network + +. /lib/functions/uci-defaults.sh +. /lib/mpc83xx.sh + +ucidef_set_interface_loopback + +board=$(mpc83xx_board_name) + +case "$board" in +rb333) + ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2" + ;; + +*) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; +esac + +uci commit network + +exit 0 diff --git a/target/linux/mpc83xx/base-files/etc/uci-defaults/network b/target/linux/mpc83xx/base-files/etc/uci-defaults/network deleted file mode 100755 index a3467aaed..000000000 --- a/target/linux/mpc83xx/base-files/etc/uci-defaults/network +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2012 OpenWrt.org -# - -[ -e /etc/config/network ] && exit 0 - -touch /etc/config/network - -. /lib/functions/uci-defaults.sh -. /lib/mpc83xx.sh - -ucidef_set_interface_loopback - -board=$(mpc83xx_board_name) - -case "$board" in -rb333) - ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2" - ;; - -*) - ucidef_set_interfaces_lan_wan "eth0" "eth1" - ;; -esac - -uci commit network - -exit 0 -- cgit v1.2.3