From 6656d579db6cc6e5fc4e0563e8964d4c6217442b Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sun, 29 Nov 2020 10:36:29 +0000 Subject: Improve stage 1 installer help for entering wireless keys/passphrases. Note that ASCII strings can now be used for WEP keys (mga#21042). --- mdk-stage1/wireless.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mdk-stage1/wireless.c') diff --git a/mdk-stage1/wireless.c b/mdk-stage1/wireless.c index 42039ef7a..3d948c7e5 100644 --- a/mdk-stage1/wireless.c +++ b/mdk-stage1/wireless.c @@ -92,14 +92,15 @@ enum return_type configure_wireless(const char *ifname) if (streq(choice, security[2])) { message = "Please enter your wireless settings. " "The ESSID is your wireless network identifier. " - "The passphrase must be a string of 8 to 63 ASCII characters."; + "The passphrase must be a string of between 8 and 63 ASCII characters."; questions[1] = "passphrase"; questions_auto[1] = "wpa_psk"; key_mgmt = "WPA-PSK"; } else if (streq(choice, security[1])) { message = "Please enter your wireless settings. " "The ESSID is your wireless network identifier. " - "The WEP key must be a string of 10 or 26 hexadecimal digits, without any separators."; + "The WEP key must be either a string of 10 or 26 hexadecimal digits, without any separators, " + "or a string of 5 or 13 ASCII characters enclosed in double quote marks (e.g. \"12345\")."; questions[1] = "WEP key"; questions_auto[1] = "wep_key"; key_mgmt = "NONE"; -- cgit v1.2.1