mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
13 lines
137 B
Bash
Executable File
13 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd wpa_supplicant
|
|
make clean
|
|
cp defconfig .config
|
|
make -j 4
|
|
|
|
cd ../hostapd
|
|
make clean
|
|
cp defconfig .config
|
|
make -j 4
|