Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-10-07 23:11:59 +0300
committernachoparker <nacho@ownyourbits.com>2018-10-07 23:11:59 +0300
commit2ea43f428b67d1ed6f4e622517d2b01000188541 (patch)
treef0e596fec2213d412bfd3b663ed08ef7bc8b87ef /build-SD-rpi.sh
parent48ac238f5bb71249afc5564e2bc6aab955663b9d (diff)
build: dont dist-upgrade to avoid kernel bug
Diffstat (limited to 'build-SD-rpi.sh')
-rwxr-xr-xbuild-SD-rpi.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/build-SD-rpi.sh b/build-SD-rpi.sh
index 2ef40a15..c4e923bb 100755
--- a/build-SD-rpi.sh
+++ b/build-SD-rpi.sh
@@ -45,8 +45,10 @@ PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
# update packages
apt-get update
- apt-get upgrade -y
- apt-get dist-upgrade -y
+
+ # As of 10-2018 this upgrades raspi-kernel and messes up wifi and BTRFS
+ #apt-get upgrade -y
+ #apt-get dist-upgrade -y
# As of 03-2018, you dont get a big kernel update by doing
# this, so better be safe. Might uncomment again in the future