gitignore: Clean up a bit
Now that we no longer leave build artifacts outside the build folder, we can clean up the gitignore a bit. Also move more things to per-folder files that we mostly had already anyway. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
ae0b90dfa4
commit
283eee8eed
9 changed files with 23 additions and 34 deletions
28
.gitignore
vendored
28
.gitignore
vendored
|
@ -1,37 +1,9 @@
|
||||||
*.a
|
|
||||||
*.o
|
|
||||||
*.d
|
|
||||||
*.gcno
|
|
||||||
*.gcda
|
|
||||||
*.gcov
|
|
||||||
*.pyc
|
*.pyc
|
||||||
*~
|
*~
|
||||||
.config
|
|
||||||
tests/hwsim/logs
|
tests/hwsim/logs
|
||||||
tests/remote/logs
|
tests/remote/logs
|
||||||
wpaspy/build
|
wpaspy/build
|
||||||
wpa_supplicant/eapol_test
|
|
||||||
wpa_supplicant/nfc_pw_token
|
|
||||||
wpa_supplicant/preauth_test
|
|
||||||
wpa_supplicant/wpa_cli
|
|
||||||
wpa_supplicant/wpa_passphrase
|
|
||||||
wpa_supplicant/wpa_supplicant
|
|
||||||
wpa_supplicant/wpa_priv
|
|
||||||
wpa_supplicant/wpa_gui/Makefile
|
|
||||||
wpa_supplicant/wpa_gui/wpa_gui
|
|
||||||
wpa_supplicant/wpa_gui-qt4/Makefile
|
|
||||||
wpa_supplicant/wpa_gui-qt4/wpa_gui
|
|
||||||
wpa_supplicant/libwpa_test1
|
|
||||||
wpa_supplicant/libwpa_test2
|
|
||||||
hostapd/hostapd
|
|
||||||
hostapd/hostapd_cli
|
|
||||||
hostapd/hlr_auc_gw
|
|
||||||
hostapd/nt_password_hash
|
|
||||||
mac80211_hwsim/tools/hwsim_test
|
mac80211_hwsim/tools/hwsim_test
|
||||||
wlantest/libwlantest.a
|
|
||||||
wlantest/test_vectors
|
|
||||||
wlantest/wlantest
|
|
||||||
wlantest/wlantest_cli
|
|
||||||
**/parallel-vm.log
|
**/parallel-vm.log
|
||||||
tags
|
tags
|
||||||
build/
|
build/
|
||||||
|
|
5
hostapd/.gitignore
vendored
Normal file
5
hostapd/.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
.config
|
||||||
|
hostapd
|
||||||
|
hostapd_cli
|
||||||
|
hlr_auc_gw
|
||||||
|
nt_password_hash
|
1
src/crypto/.gitignore
vendored
1
src/crypto/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
libcrypto.a
|
|
2
src/drivers/.gitignore
vendored
2
src/drivers/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
build.wpa_supplicant
|
|
||||||
build.hostapd
|
|
1
src/radius/.gitignore
vendored
1
src/radius/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
libradius.a
|
|
1
src/tls/.gitignore
vendored
1
src/tls/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
libtls.a
|
|
1
src/utils/.gitignore
vendored
1
src/utils/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
libutils.a
|
|
4
wlantest/.gitignore
vendored
Normal file
4
wlantest/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
libwlantest.a
|
||||||
|
test_vectors
|
||||||
|
wlantest
|
||||||
|
wlantest_cli
|
14
wpa_supplicant/.gitignore
vendored
14
wpa_supplicant/.gitignore
vendored
|
@ -1 +1,15 @@
|
||||||
|
.config
|
||||||
*.service
|
*.service
|
||||||
|
eapol_test
|
||||||
|
nfc_pw_token
|
||||||
|
preauth_test
|
||||||
|
wpa_cli
|
||||||
|
wpa_passphrase
|
||||||
|
wpa_supplicant
|
||||||
|
wpa_priv
|
||||||
|
wpa_gui/Makefile
|
||||||
|
wpa_gui/wpa_gui
|
||||||
|
wpa_gui-qt4/Makefile
|
||||||
|
wpa_gui-qt4/wpa_gui
|
||||||
|
libwpa_test1
|
||||||
|
libwpa_test2
|
||||||
|
|
Loading…
Reference in a new issue