[oe-commits] Vitus Jensen : netbase: add bluepro specific /etc/network/interfaces

git version control git at git.openembedded.org
Fri Nov 12 05:06:39 UTC 2010


Module: openembedded.git
Branch: testing-next
Commit: b26a6884ee6b39113b2df31ce282a67fbe581b49
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=b26a6884ee6b39113b2df31ce282a67fbe581b49

Author: Vitus Jensen <vjensen at gmx.de>
Date:   Fri Apr 16 07:08:23 2010 +0000

netbase: add bluepro specific /etc/network/interfaces

* eth0, usb for host connectivity
* can0, can1 to control CAN devices

Signed-off-by: Vitus Jensen <vjensen at gmx.de>
Signed-off-by: Eric Bénard <eric at eukrea.com>

---

 recipes/netbase/netbase/bluepro/interfaces |   33 ++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/recipes/netbase/netbase/bluepro/interfaces b/recipes/netbase/netbase/bluepro/interfaces
new file mode 100644
index 0000000..9b27ef0
--- /dev/null
+++ b/recipes/netbase/netbase/bluepro/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
+





More information about the Openembedded-commits mailing list