Skip to content

Commit

Permalink
v159
Browse files Browse the repository at this point in the history
+ DietPi-Config | WiFi: Now uses the wpa_supplicant.conf method to setup
WiFi connections. WEP is no longer supported by DietPi in this mode.
WPA-PSK/WPA2-PSK and OPEN hosts supported:
https://github.com/Fourdee/DietPi/issues/1262

+ DietPi-Config | RPi Stretch: Resolved an issue with onboard Wifi
failing to scan: https://github.com/Fourdee/DietPi/issues/1262

+ VMWare | Updated to Debian Stretch:
https://github.com/Fourdee/DietPi/issues/1219
  • Loading branch information
Fourdee committed Nov 30, 2017
1 parent 3aa5dd0 commit 2679d9c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ v159
(xx/11/17)

Image Modifications:
VMWare | Updated to Debian Stretch.
VMWare | Updated to Debian Stretch: https://github.com/Fourdee/DietPi/issues/1219

Changes / Improvements / Optimizations:
General | Odroid XU3/4 images updated: Includes kernel support for EMMC 5.1 (thanks Meveric): https://github.com/Fourdee/DietPi/issues/1252
General | DietPi RPi kernel: Updated to 4.9.62.
General | DietPi RPi kernel: Will no longer re-install, if the current version is already at latest.
General | Added farenheit readouts for cpu_info and dietpi-config. For those "over the pond" :D : http://dietpi.com/phpbb/viewtopic.php?f=12&t=2516&p=9772#p9772
DietPi-Config | WiFi: Now uses the wpa_supplicant.conf method to setup WiFi connections. WEP is no longer supported by DietPi in this mode. WPA-PSK/WPA2-PSK and OPEN hosts supported: https://github.com/Fourdee/DietPi/issues/1262
DietPi-Backup | "Full Backup" Mode is now the default for fresh DietPi installations. This is mainly due to MySQL data now being in the DietPi userdata directory.
DietPi-Config | Tools > Benchmarks: Added ability to benchmark CPU performance based on bash + integer: https://github.com/Fourdee/DietPi/issues/1253#issuecomment-346881878
DietPi-Config | Time sync modes: NTP is now uninstalled when SystemD timedatectl is enabled. Reinstalled on demand. Timedatectl pool servers are now also set: https://github.com/Fourdee/DietPi/issues/1208#issuecomment-343762480
Expand All @@ -23,6 +24,7 @@ DietPi-Software | Syncthing: Installation updated to version 0.14.40, for new in

Bug Fixes:
DietPi-Config | Nvidia driver: nouveau now disabled by default on x86_64, fix for 750Ti and possibily other Nvidia chipsets (thanks dubyazero): https://github.com/Fourdee/DietPi/issues/1244
DietPi-Config | RPi Stretch: Resolved an issue with onboard Wifi failing to scan: https://github.com/Fourdee/DietPi/issues/1262
DietPi-Software | Redis: Minor un/installation/activation fixes of PHP module (Thanks to @MichaIng) : https://github.com/Fourdee/DietPi/pull/1249
DietPi-Software | moOde: Resolved an issue where dietpi-drive_manager mounted drives, would not be available in the libary: https://github.com/Fourdee/DietPi/issues/1223#issuecomment-346708298
DietPi-Update | Resolved an issue where .update_available file would still exist in no network situations: https://github.com/Fourdee/DietPi/issues/1258
Expand Down
2 changes: 1 addition & 1 deletion dietpi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Wifi_Enabled=0
#Enter your Wifi details below, if applicable (Case Sensitive).
Wifi_SSID=FuzonWifi
Wifi_KEY=MyAccessKey
# available | WPA-PSK / WEP / NONE
# available | WPA-PSK / NONE | WEP=No longer supported
Wifi_KEYMGR=WPA-PSK

#Enter your Static Network details below, if applicable.
Expand Down
1 change: 1 addition & 0 deletions dietpi/dietpi-config
Original file line number Diff line number Diff line change
Expand Up @@ -2590,6 +2590,7 @@ _EOF_

# Key host
#??? Can we check for WEP/WPA-PSK on the SSID and set accordingly?
# WEP tests failed, dropping support as its outdated and not secure. WPA-PSK is recommended for router.
else

sed -i '/Wifi_KEYMGR=/c\Wifi_KEYMGR=WPA-PSK' /DietPi/dietpi.txt
Expand Down
3 changes: 1 addition & 2 deletions dietpi/func/dietpi-set_hardware
Original file line number Diff line number Diff line change
Expand Up @@ -1479,11 +1479,10 @@ _EOF_

Wifi_KEYMGR='NONE'
cat << _EOF_ >> /etc/wpa_supplicant/wpa_supplicant.conf
key_mgmt=$Wifi_KEYMGR
wep_key0="$Wifi_KEY"
wep_tx_keyidx=0
}
}
_EOF_
fi

Expand Down

0 comments on commit 2679d9c

Please sign in to comment.