From 12769c06e708099828baa50d9f02dd6f90e24888 Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Mon, 4 Mar 2019 11:17:53 +0100 Subject: [PATCH] init-ifupdown: ccimx6ulsbcpro: Add Wi-Fi interfaces to the interfaces file The ConnectCore 6UL SBC Pro has a Wi-Fi interface with support for both station and softAP modes. This commit adds an interfaces file that defines a wlan0 interface for the station mode, a wlan1 interface for the softAP mode. 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 --- .../init-ifupdown/ccimx6ulsbcpro/interfaces | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces index abb8dce..281f91c 100644 --- a/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces +++ b/recipes-core/init-ifupdown/init-ifupdown/ccimx6ulsbcpro/interfaces @@ -4,6 +4,28 @@ 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 + # Wired interfaces auto eth1 iface eth0 inet dhcp