mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-05 05:15:24 +02:00
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 <alex.gonzalez@digi.com>
This commit is contained in:
parent
1d86d8eea7
commit
3ca520ba95
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user