]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/oldcore/34/update.sh
Started core41.
[people/pmueller/ipfire-2.x.git] / config / rootfiles / oldcore / 34 / update.sh
CommitLineData
dd60b348
AF
1#!/bin/bash
2############################################################################
3# #
4# This file is part of the IPFire Firewall. #
5# #
6# IPFire is free software; you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation; either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# IPFire is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with IPFire; if not, write to the Free Software #
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
98b5cc93 20# Copyright (C) 2010 IPFire-Team <info@ipfire.org>. #
dd60b348
AF
21# #
22############################################################################
23#
24. /opt/pakfire/lib/functions.sh
25/usr/local/bin/backupctrl exclude >/dev/null 2>&1
26#
591d0154 27KVER="2.6.27.42"
b3cede08
AF
28ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
29MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
30# Nur den letzten Parameter verwenden
31echo $MOUNT > /dev/null
32MOUNT=$_
33if [ ! $MOUNT == "rw" ]; then
34 MOUNT="ro"
35fi
dd60b348 36#
b3cede08
AF
37# check if we the backup file already exist
38if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
39 echo Moving backup to backup-old ...
40 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
41 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
42fi
43echo First we made a backup of all files that was inside of the
44echo update archive. This may take a while ...
45# Add some files that are not in the package to backup
46echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
47echo boot >> /opt/pakfire/tmp/ROOTFILES
48echo etc/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES
dd60b348 49#
b3cede08
AF
50tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
51 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
52echo
53echo Update Kernel to $KVER ...
54# Remove old kernel, configs, initrd, modules ...
dd60b348 55#
b3cede08
AF
56rm -rf /boot/System.map-*
57rm -rf /boot/config-*
58rm -rf /boot/ipfirerd-*
59rm -rf /boot/vmlinuz-*
60# Don't remove old xen modules. Kernel may stored outside.
61rm -rf /lib/modules/*-ipfire
dd60b348 62#
b3cede08
AF
63# Backup grub.conf
64#
65cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
66#
67# Unpack the updated files
68#
69echo
70echo Unpack the updated files ...
71#
72tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
73 --no-overwrite-dir
74#
75# Modify grub.conf
76#
77echo
78echo Update grub configuration ...
79sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
80sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
81sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
82
83if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
84 echo "grub use default console ..."
85else
86 echo "grub use serial console ..."
87 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
88 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
89 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
90 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
91fi
92#
93# Made emergency - initramdisk
94#
95echo
96echo Create new Initramdisks ...
98b5cc93 97cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
b3cede08
AF
98sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
99mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
100cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
101#
102# Made initramdisk
103#
104if [ "${ROOT:0:7}" == "/dev/sd" ]; then
105 # Remove ide hook if root is on sda
106 sed -i "s| ide | |g" /etc/mkinitcpio.conf
107else
108if [ "${ROOT:0:7}" == "/dev/hd" ]; then
109 # Remove pata & sata hook if root is on hda
110 sed -i "s| pata | |g" /etc/mkinitcpio.conf
111 sed -i "s| sata | |g" /etc/mkinitcpio.conf
112fi
113fi
114mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
115#
116# ReInstall grub
117#
118grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
119#
120# Rebuild Language
121#
122perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
123#
124# Delete old lm-sensor modullist...
125#
126rm -rf /etc/sysconfig/lm_sensors
127#
26617b09
AF
128# Delete old dhcpcd.exe...
129#
130rm -f /var/ipfire/dhcpc/dhcpcd.exe
131#
b3cede08
AF
132# This core-update need a reboot
133/usr/bin/logger -p syslog.emerg -t core-upgrade-34 "Upgrade finished. If you use a customized grub.cfg"
134/usr/bin/logger -p syslog.emerg -t core-upgrade-34 "Check it before reboot !!!"
135/usr/bin/logger -p syslog.emerg -t core-upgrade-34 " *** Please reboot... *** "