diff --git a/packages/mediacenter/xbmc-addon-settings/source/resources/settings.xml b/packages/mediacenter/xbmc-addon-settings/source/resources/settings.xml index 493b522f7f..c804349a18 100644 --- a/packages/mediacenter/xbmc-addon-settings/source/resources/settings.xml +++ b/packages/mediacenter/xbmc-addon-settings/source/resources/settings.xml @@ -39,7 +39,7 @@ - + diff --git a/packages/network/connman/config/network.conf b/packages/network/connman/config/network.conf index b630acfabd..cf82b67066 100644 --- a/packages/network/connman/config/network.conf +++ b/packages/network/connman/config/network.conf @@ -67,10 +67,10 @@ # WLAN Security # This option lets you chose the security protocol for your wireless # network -# Options are "NONE" / "WEP" / "PSK" ) +# Options are "NONE" / "WEP" / "WPA/WPA2" ) # "NONE" or left blank for an open WLAN (default) # "WEP" for WEP protected WLAN's -# "PSK" for WPA protected WLAN's +# "WPA/WPA2" for WPA protected WLAN's SECURITY="" # WLAN Passphrase diff --git a/packages/network/connman/init.d/21_network b/packages/network/connman/init.d/21_network index 396ab400a6..c82b6472c6 100644 --- a/packages/network/connman/init.d/21_network +++ b/packages/network/connman/init.d/21_network @@ -64,10 +64,10 @@ fi if [ "$NET_NETWORK" = "WLAN" -a -n "$NET_SSID" ]; then NET_SSID_HEX=`echo -n "$NET_SSID" | od -tx1 | cut -c8-| tr -d ' \n'` - # NET_SECURITY: ( NONE / WEP / PSK ) + # NET_SECURITY: ( NONE / WEP / WPA/WPA2 ) if [ "$NET_SECURITY" = "WEP" -a -n "$NET_PASSPHRASE" ]; then MODE="managed_wep" - elif [ "$NET_SECURITY" = "PSK" -a -n "$NET_PASSPHRASE" ]; then + elif [ "$NET_SECURITY" = "WPA/WPA2" -a -n "$NET_PASSPHRASE" ]; then MODE="managed_psk" else MODE="managed_none"