core150: start core150 and add kernel

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2020-08-31 07:06:41 +02:00
parent ce9f979c01
commit eefe8acbea
55 changed files with 181 additions and 1 deletions

View File

@@ -1 +0,0 @@
../../../../common/aarch64/gcc

View File

@@ -1 +0,0 @@
../../../../common/aarch64/glibc

View File

@@ -1 +0,0 @@
../../../../common/aarch64/gmp

View File

@@ -1 +0,0 @@
../../../../common/aarch64/grub

View File

@@ -1 +0,0 @@
../../../common/apache2

View File

@@ -1 +0,0 @@
../../../../common/armv5tel/gcc

View File

@@ -1 +0,0 @@
../../../../common/armv5tel/glibc

View File

@@ -1 +0,0 @@
../../../../common/armv5tel/gmp

View File

@@ -1 +0,0 @@
../../../common/bind

View File

@@ -1 +0,0 @@
../../../common/curl

View File

@@ -1,10 +0,0 @@
etc/system-release
etc/issue
srv/web/ipfire/cgi-bin/credits.cgi
srv/web/ipfire/cgi-bin/index.cgi
srv/web/ipfire/cgi-bin/ovpnmain.cgi
var/ipfire/langs
etc/rc.d/helper/oci-setup
etc/rc.d/init.d/cloud-init
etc/rc.d/init.d/functions
etc/rc.d/init.d/smt

View File

@@ -1 +0,0 @@
../../../common/gnutls

View File

@@ -1 +0,0 @@
../../../common/gzip

View File

@@ -1 +0,0 @@
../../../../common/i586/gcc

View File

@@ -1 +0,0 @@
../../../../common/i586/glibc

View File

@@ -1 +0,0 @@
../../../../common/i586/gmp

View File

@@ -1 +0,0 @@
../../../../common/i586/grub

View File

@@ -1 +0,0 @@
../../../../common/i586/hyperscan

View File

@@ -1 +0,0 @@
../../../../common/i586/intel-microcode

View File

@@ -1 +0,0 @@
../../../../common/i586/openssl-sse2

View File

@@ -1 +0,0 @@
../../../common/iproute2

View File

@@ -1 +0,0 @@
../../../common/kbd

View File

@@ -1 +0,0 @@
../../../common/libloc

View File

@@ -1 +0,0 @@
../../../common/logrotate

View File

@@ -1 +0,0 @@
../../../common/mpfr

View File

@@ -1 +0,0 @@
../../../common/openssl

View File

@@ -1 +0,0 @@
../../../common/perl

View File

@@ -1 +0,0 @@
../../../common/popt

View File

@@ -1 +0,0 @@
../../../common/squid

View File

@@ -1 +0,0 @@
../../../common/strongswan

View File

@@ -1 +0,0 @@
../../../common/suricata

View File

@@ -1 +0,0 @@
../../../common/unbound

View File

@@ -1 +0,0 @@
../../../common/vim

View File

@@ -1 +0,0 @@
../../../../common/x86_64/gcc

View File

@@ -1 +0,0 @@
../../../../common/x86_64/glibc

View File

@@ -1 +0,0 @@
../../../../common/x86_64/gmp

View File

@@ -1 +0,0 @@
../../../../common/x86_64/grub

View File

@@ -1 +0,0 @@
../../../../common/x86_64/hyperscan

View File

@@ -1 +0,0 @@
../../../../common/x86_64/intel-microcode

View File

@@ -1 +0,0 @@
../../../common/xz

View File

@@ -1 +0,0 @@
../../../common/zstd

View File

@@ -0,0 +1 @@
../../../../common/aarch64/linux

View File

@@ -0,0 +1 @@
../../../../common/aarch64/linux-initrd

View File

@@ -0,0 +1 @@
../../../../common/armv5tel/linux-initrd-multi

View File

@@ -0,0 +1 @@
../../../../common/armv5tel/linux-multi

View File

@@ -0,0 +1,4 @@
etc/system-release
etc/issue
srv/web/ipfire/cgi-bin/credits.cgi
var/ipfire/langs

View File

@@ -0,0 +1 @@
../../../../common/i586/linux

View File

@@ -0,0 +1 @@
../../../../common/i586/linux-initrd

View File

@@ -0,0 +1 @@
../../../../common/x86_64/linux

View File

@@ -0,0 +1 @@
../../../../common/x86_64/linux-initrd

View File

@@ -24,16 +24,69 @@
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
core=149
core=150
exit_with_error() {
# Set last succesfull installed core.
echo $(($core-1)) > /opt/pakfire/db/core/mine
# force fsck at next boot, this may fix free space on xfs
touch /forcefsck
# don't start pakfire again at error
killall -KILL pak_update
/usr/bin/logger -p syslog.emerg -t ipfire \
"core-update-${core}: $1"
exit $2
}
# Remove old core updates from pakfire cache to save space...
for (( i=1; i<=$core; i++ )); do
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
done
KVER="xxxKVERxxx"
# Backup uEnv.txt if exist
if [ -e /boot/uEnv.txt ]; then
cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
fi
# Do some sanity checks.
case $(uname -r) in
*-ipfire-kirkwood)
exit_with_error "ERROR cannot update. kirkwood kernel was not supported." 1
;;
*-ipfire*)
# Ok.
;;
*)
exit_with_error "ERROR cannot update. No IPFire Kernel." 1
;;
esac
if [ -e /boot/grub/grub.conf ]; then
exit_with_error "ERROR unsupported GRUB1/pygrub found!" 1
fi
# Check diskspace on root
ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
if [ $ROOTSPACE -lt 100000 ]; then
exit_with_error "ERROR cannot update because not enough free space on root." 2
exit 2
fi
# Remove the old kernel
rm -rf /boot/System.map-*
rm -rf /boot/config-*
rm -rf /boot/ipfirerd-*
rm -rf /boot/initramfs-*
rm -rf /boot/vmlinuz-*
rm -rf /boot/uImage-*-ipfire-*
rm -rf /boot/zImage-*-ipfire-*
rm -rf /boot/uInit-*-ipfire-*
rm -rf /boot/dtb-*-ipfire-*
rm -rf /lib/modules
# Remove files
rm -rvf \
/usr/share/vim/vim81
# Stop services
@@ -50,20 +103,19 @@ ldconfig
/usr/local/bin/filesystem-cleanup
# Start services
/etc/init.d/apache restart
/etc/init.d/unbound restart
/etc/init.d/squid restart
# Update crontab
sed -i /var/spool/cron/root.orig \
-e "s/xt_geoip_update/update-location-database/" \
-e "/location/s/monthly/hourly/" \
-e "s/GeoIP/location/"
fcrontab -z
# remove lm_sensor config after collectd was started
# to reserch sensors at next boot with updated kernel
rm -f /etc/sysconfig/lm_sensors
# Install updated grub
if [ -e /boot/grub/grub.cfg ]; then
/usr/bin/install-bootloader
# Upadate Kernel version uEnv.txt
if [ -e /boot/uEnv.txt ]; then
sed -i -e "s/KVER=.*/KVER=${KVER}/g" /boot/uEnv.txt
fi
# call user update script (needed for some arm boards)
if [ -e /boot/pakfire-kernel-update ]; then
/boot/pakfire-kernel-update ${KVER}
fi
# This update needs a reboot...