[meta-freescale] [3rdparty][PATCH 6/6] init-ifupdown: ccimx6ulsbcpro: Add interfaces file

Alex Gonzalez alex.gonzalez at digi.com
Thu Feb 21 07:24:26 PST 2019


The ConnectCore 6UL SBC Pro has a Wi-Fi interface with support for both
station and softAP modes, as well as two ethernet interfaces.

This commit adds an interfaces file that defines a wlan0 interface for the
station mode, a wlan1 interface for the softAP, and both eth0 and eth1
interfaces.

Note that the ethernet interface that is enabled in U-Boot is the eth1
interface in the Linux kernel.

Signed-off-by: Alex Gonzalez <alex.gonzalez at digi.com>
---
 .../init-ifupdown/ccimx6ulsbcpro/interfaces        | 46 ++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces

diff --git a/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces
new file mode 100644
index 000000000000..53539e51cf22
--- /dev/null
+++ b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces
@@ -0,0 +1,46 @@
+# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
+ 
+# The loopback interface
+auto lo
+iface lo inet loopback
+
+# Wireless interfaces
+
+# Client infrastructure mode
+auto wlan0
+iface wlan0 inet static
+	address 192.168.8.2
+	netmask 255.255.255.0
+	network 192.168.8.0
+	wireless_mode managed
+	wireless_essid any
+	wpa-driver nl80211
+	wpa-conf /etc/wpa_supplicant.conf
+
+# SoftAP mode
+auto wlan1
+iface wlan1 inet static
+	address 192.168.9.2
+	netmask 255.255.255.0
+	network 192.168.9.0
+	post-up /etc/init.d/hostapd start
+	pre-down /etc/init.d/hostapd stop
+
+iface atml0 inet dhcp
+
+# Wired or wireless interfaces
+auto eth1
+iface eth0 inet dhcp
+iface eth1 inet dhcp
+
+# Ethernet/RNDIS gadget (g_ether)
+# ... or on host side, usbnet and random hwaddr
+iface usb0 inet static
+	address 192.168.7.2
+	netmask 255.255.255.0
+	network 192.168.7.0
+	gateway 192.168.7.1
+
+# Bluetooth networking
+iface bnep0 inet dhcp
+


More information about the meta-freescale mailing list