diff options
author | Joshua Oreman <oremanj@rwcr.net> | 2009-11-29 14:10:48 -0500 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2010-01-05 10:15:30 -0500 |
commit | 1cc41174cb0b1625c583fcc07573dbaee8571a2c (patch) | |
tree | c46d17e9356680d1f9ebd65389bcd415ab84f4d2 | |
parent | 5240fee38f1f5d594fb3430627802445502828e1 (diff) | |
download | ipxe-1cc41174cb0b1625c583fcc07573dbaee8571a2c.tar.gz |
[config] Enable WPA2 by default
Wireless gPXE images are already so large that user-friendliness
seems to trump ROM-size friendliness in this case.
Signed-off-by: Marty Connor <mdc@etherboot.org>
-rw-r--r-- | src/config/general.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/general.h b/src/config/general.h index 99724813e..5187e2a17 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -70,7 +70,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #define CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */ #define CRYPTO_80211_WPA /* WPA Personal, authenticating with passphrase */ -#undef CRYPTO_80211_WPA2 /* Add support for stronger WPA cryptography */ +#define CRYPTO_80211_WPA2 /* Add support for stronger WPA cryptography */ /* * Name resolution modules |