diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-01 09:09:04 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-01 09:09:04 +0100 |
commit | d093e7e202fb061d187e60a4fc7b29ec0ef5cbfb (patch) | |
tree | 80afc7f83cfe79f2d809c184a2937ab7560b6c52 /scripts/check-qemu-install | |
parent | ced496839e07427050a9d8c4950fd3a5a5cec0a0 (diff) | |
download | vyos-build-d093e7e202fb061d187e60a4fc7b29ec0ef5cbfb.tar.gz vyos-build-d093e7e202fb061d187e60a4fc7b29ec0ef5cbfb.zip |
Testsuite: always load WiFi HW simulation module
Diffstat (limited to 'scripts/check-qemu-install')
-rwxr-xr-x | scripts/check-qemu-install | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 2632a5e4..177adf2f 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -293,6 +293,12 @@ try: # additional settling time time.sleep(20) + ################################################ + # Always load the WiFi simulation module + ################################################ + c.sendline('sudo modprobe mac80211_hwsim') + c.expect(r'vyos@vyos:~\$') + ################################################# # Start/stop config daemon ################################################# |