Skip to content

Commit

Permalink
v141
Browse files Browse the repository at this point in the history
  • Loading branch information
Fourdee committed Dec 31, 2016
1 parent 50d586b commit 996a32c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.txt
@@ -1,5 +1,5 @@
v141
(xx/xx/xx)
(31/12/16)

Images:
NanoPi NEO | This image has been updated to kernel 4.9, appears more stable to 3.x. Also fixes a few issues relating to USB WiFi and i2c errors: https://github.com/Fourdee/DietPi/issues/667
Expand All @@ -14,9 +14,8 @@ Bug fixes:
DietPi-Automation | Resolved an issue where static IPs were not being applied during 1st run dietpi-update stage. This fix applies to v140 and higher images: https://github.com/Fourdee/DietPi/issues/660
DietPi-Software | Resolved an issue where the DietPi installed version of Chromium was being overwritten by Debian repo during dist-upgrade: https://github.com/Fourdee/DietPi/issues/658
DietPi-Software | Resolved an issue where custom global password ('AUTO_Global_Password=') was not being used as MySQL login password, causing MySQL DB creations to fail: https://github.com/Fourdee/DietPi/issues/666
General | apt-transport-https: Is now installed by default on all devices. Required for https apt usage.

RPi Stretch:
DietPi-Software | Resolved an issue where LMS failed to installed on Odroid C2: https://github.com/Fourdee/DietPi/issues/663
General | apt-transport-https: Is now installed by default on all devices. Required for https apt usage and resolves issues with apt simulation failing: https://github.com/Fourdee/DietPi/issues/669

-----------------------------------------------------------------------------------------------------------

Expand Down
4 changes: 3 additions & 1 deletion PREP_SYSTEM_FOR_DIETPI.sh
Expand Up @@ -24,7 +24,6 @@ exit 0 #prevent continuation of this script.
#------------------------------------------------------------------------------------------------

#Jessie , unified apt sources.
rm /etc/apt/sources.list.d/deb-multimedia.list

# - C2
# cat << _EOF_ > /etc/apt/sources.list
Expand Down Expand Up @@ -89,6 +88,9 @@ _EOF_
# #echo -e "deb http://archive.raspberrypi.org/debian/ stretch main ui" > /etc/apt/sources.list.d/raspi.list #Does not currently support Stretch
# RPI UK mirror director is slow, unstable and unreliable -------------------------

#+Meveric images
rm /etc/apt/sources.list.d/deb-multimedia.list

#Remove following Jessie
apt-get clean
apt-get update
Expand Down
17 changes: 15 additions & 2 deletions dietpi/patch_file
Expand Up @@ -144,6 +144,13 @@

fi

# #Placeholder
# if (( $EMR_INDEX == 1 )); then

# Update_EMR_Index

# fi


#/////////////////////////////////////////////////////////////////////////////////////
#Incremental patch system:
Expand Down Expand Up @@ -2066,8 +2073,7 @@ _EOF_
elif (( $VERSION_CURRENT == 139 )); then
#-------------------------------------------------------------------------------
#C2 libc6 u7 breaking most installations, replace with u6: https://github.com/Fourdee/DietPi/issues/653
if (( $HW_MODEL == 12 )) &&
[ -f /DietPi/dietpi/.installed ]; then
if (( $HW_MODEL == 12 )); then

wget http://ftp.us.debian.org/debian/pool/main/g/glibc/libc6_2.19-18+deb8u6_arm64.deb -O package.deb
dpkg -i package.deb
Expand All @@ -2093,6 +2099,13 @@ _EOF_
#Apt-transport install by default on all systems:
apt-get install -y apt-transport-https
#-------------------------------------------------------------------------------
#Deb multimedia repo left on C2 image, remove for fresh installs only
if [ ! -f /DietPi/dietpi/.installed ]; then

rm /etc/apt/sources.list.d/deb-multimedia.list

fi
#-------------------------------------------------------------------------------

fi

Expand Down

0 comments on commit 996a32c

Please sign in to comment.