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 <alex.gonzalez@digi.com>
This commit is contained in:
Alex Gonzalez 2019-03-04 11:17:53 +01:00 committed by Otavio Salvador
parent 3ca520ba95
commit 12769c06e7

View File

@ -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