kernel-module-qualcomm: create wlan virtual interface
Use the same udev script that loads the qualcomm wireless module to create the 'wlan1' virtual interface. https://jira.digi.com/browse/DEL-4453 Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
092305e8f6
commit
a5ae6a5b3c
|
|
@ -97,4 +97,9 @@ esac
|
||||||
modprobe wlan
|
modprobe wlan
|
||||||
|
|
||||||
# Verify the interface is present
|
# Verify the interface is present
|
||||||
[ -d "/sys/class/net/wlan0" ] || logger -t qca6564 "[ERROR] Loading qca6564 module"
|
if [ -d "/sys/class/net/wlan0" ]; then
|
||||||
|
# Create 'wlan1' virtual interface
|
||||||
|
virtwlans.sh
|
||||||
|
else
|
||||||
|
logger -t qca6564 "[ERROR] Loading qca6564 module"
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue