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:
Javier Viguera 2017-07-05 19:38:11 +02:00
parent 092305e8f6
commit a5ae6a5b3c
1 changed files with 6 additions and 1 deletions

View File

@ -97,4 +97,9 @@ esac
modprobe wlan
# 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