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