summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFisher Cheng2013-10-02 15:50:51 +0800
committerFisher Cheng2013-10-02 16:03:08 +0800
commit8bc2065b2b81db3715c602e5dd00e67f6d541557 (patch)
tree73e7ebf0d1c18d2700b9cd9c8eb570560d59cb7a
parent3c4948d1d812ae904a66e6d9e828d14dce1c87c1 (diff)
cleo/buildroot/target/*/mpr520e: change interface init order, #refs 4011
-rw-r--r--cleopatre/buildroot/target/device/Spidcom/targets/mpr520e/target_skeleton_add/etc/network/interfaces10
1 files changed, 5 insertions, 5 deletions
diff --git a/cleopatre/buildroot/target/device/Spidcom/targets/mpr520e/target_skeleton_add/etc/network/interfaces b/cleopatre/buildroot/target/device/Spidcom/targets/mpr520e/target_skeleton_add/etc/network/interfaces
index 3391238acc..1dcadb0004 100644
--- a/cleopatre/buildroot/target/device/Spidcom/targets/mpr520e/target_skeleton_add/etc/network/interfaces
+++ b/cleopatre/buildroot/target/device/Spidcom/targets/mpr520e/target_skeleton_add/etc/network/interfaces
@@ -1,4 +1,4 @@
-auto lo eth0 plc0 ra0 br0
+auto lo eth0 ra0 plc0 br0
# Configure Loopback
iface lo inet loopback
@@ -8,11 +8,11 @@ iface eth0 inet static
address 0.0.0.0
netmask 255.255.255.255
-iface plc0 inet static
+iface ra0 inet static
address 0.0.0.0
netmask 255.255.255.255
-iface ra0 inet static
+iface plc0 inet static
address 0.0.0.0
netmask 255.255.255.255
@@ -21,10 +21,10 @@ iface br0 inet static
netmask 255.255.0.0
pre-up brctl addbr br0
pre-up brctl addif br0 eth0
- pre-up brctl addif br0 plc0
pre-up brctl addif br0 ra0
+ pre-up brctl addif br0 plc0
pre-up brctl setfd br0 1
post-down brctl delif br0 eth0
- post-down brctl delif br0 plc0
post-down brctl delif br0 ra0
+ post-down brctl delif br0 plc0
post-down brctl delbr br0