mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
23 lines
185 B
Bash
23 lines
185 B
Bash
#! /bin/bash
|
|
|
|
echo "@@Unload hostapd..."
|
|
dir=$(pwd)
|
|
cd $dir/script
|
|
./unload_ap.sh
|
|
|
|
PID=$!
|
|
wait $PID
|
|
sleep 2
|
|
|
|
echo "@@Unload driver..."
|
|
cd $dir
|
|
./unload.sh
|
|
|
|
PID=$!
|
|
wait $PID
|
|
sleep 2
|
|
|
|
|
|
|
|
|