aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitus Jensen <vjensen@gmx.de>2010-04-16 06:53:23 +0000
committerEric Bénard <eric@eukrea.com>2010-11-06 22:52:48 +0100
commitc922ae4e4e5f30e13de72a578083f34715023c75 (patch)
tree790e7f3c1685c654939e018a20e4d2dfe6e5fd0b
parent6704324e2da42f666c8fdc654a3624a8ac536465 (diff)
downloadopenembedded-c922ae4e4e5f30e13de72a578083f34715023c75.tar.gz
netbase: add tb5200l specific /etc/network/interfaces
* eth0, usb for host connectivity * can0, can1 to control CAN devices Signed-off-by: Vitus Jensen <vjensen@gmx.de> Acked-by: Marco Cavallini <m.cavallini@koansoftware.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r--recipes/netbase/netbase/tb5200l/interfaces33
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes/netbase/netbase/tb5200l/interfaces b/recipes/netbase/netbase/tb5200l/interfaces
new file mode 100644
index 0000000000..9b27ef0557
--- /dev/null
+++ b/recipes/netbase/netbase/tb5200l/interfaces
@@ -0,0 +1,33 @@
+# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
+
+# The loopback interface
+auto lo
+iface lo inet loopback
+
+
+# Wired ethernet interface of "tiny box"
+auto eth0
+iface eth0 inet dhcp
+
+
+# Ethernet/RNDIS gadget (g_ether)
+# ... or on host side, usbnet and random hwaddr
+iface usb0 inet static
+ address 192.168.0.202
+ netmask 255.255.255.0
+ network 192.168.0.0
+ gateway 192.168.0.200
+
+# CAN interfaces
+auto can0
+iface can0 inet manual
+ pre-up ip link set $IFACE type can bitrate 125000 listen-only off
+ up /sbin/ifconfig $IFACE up
+ down /sbin/ifconfig $IFACE down
+
+auto can1
+iface can1 inet manual
+ pre-up ip link set $IFACE type can bitrate 125000 listen-only off
+ up /sbin/ifconfig $IFACE up
+ down /sbin/ifconfig $IFACE down
+