From 3ca520ba95e2e6218e0c0ca104a491961ffd51a3 Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Mon, 4 Mar 2019 11:12:27 +0100 Subject: [PATCH] init-ifupdown: ccimx6ulsbcexpress: Add wi-Fi interfaces to interfaces file The ConnectCore 6UL SBC Express has a Wi-Fi interface with both station and softAP functionality. This interfaces file adds the wlan0 interface for station and wlan1 interface for softAP. Note that for softAP functionality to work, MAC addresses for the virtual wireless interfaces need to be programmed in the uboot environment with: env set wlan1addr aa:cc:cc:xx:yy:zz env set wlan2addr aa:cc:cc:xx:yy:zz env set wlan3addr aa:cc:cc:xx:yy:zz Signed-off-by: Alex Gonzalez --- .../ccimx6ulsbcexpress/interfaces | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcexpress/interfaces b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcexpress/interfaces index 7be78a2..6d1c3d2 100644 --- a/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcexpress/interfaces +++ b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcexpress/interfaces @@ -4,7 +4,29 @@ auto lo iface lo inet loopback -# Wired interfaces +# 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 + +# Wired interfaces auto eth0 iface eth0 inet dhcp