]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/28/update.sh
Update Kernel to 2.6.27.20
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 28 / update.sh
CommitLineData
5e3dc61b 1#!/bin/bash
fa2637c2
AF
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# #
20# Copyright (C) 2008 IPFire-Team <info@ipfire.org>. #
21# #
22############################################################################
23#
5e3dc61b
AF
24. /opt/pakfire/lib/functions.sh
25/usr/local/bin/backupctrl exclude >/dev/null 2>&1
fa2637c2 26#
a3b414d3 27KVER="2.6.27.20"
fa2637c2
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=$_
33#
34# check if we the backup file already exist
35if [ -e /var/ipfire/backup/coreupdate28_$KVER.tar.gz ]; then
36 echo Moving backup to backup-old ...
37 mv -f /var/ipfire/backup/coreupdate28_$KVER.tar.gz \
38 /var/ipfire/backup/coreupdate28_$KVER-old.tar.gz
39fi
40echo First we made a backup of all files that was inside of the
41echo update archive. This may take a while ...
42# Add some files that are not in the package to backup
43echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
44echo boot >> /opt/pakfire/tmp/ROOTFILES
45#
46
47tar czvf /var/ipfire/backup/coreupdate28_$KVER.tar.gz.tar.gz \
48 -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
49echo
50echo Update IPfire Kernel to $KVER ...
51# Remove old kernel, configs, initrd, modules ...
52#
53rm -rf /boot/System.map-*
54rm -rf /boot/config-*
55rm -rf /boot/ipfirerd-*
56rm -rf /boot/vmlinuz-*
57rm -rf /lib/modules/
58#
59# Unpack the updated files
60#
61echo
62echo Unpack the updated files ...
63#
64tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
65 --no-overwrite-dir
66#
67# Modify grub.conf
68#
69echo
70echo Update grub configuration ...
71sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
72sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
73sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
74#
75# Made emergency - initramdisk
76#
77echo
78echo Create new Initramdisks ...
79cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
80sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
81mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
82cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
83#
84# Made initramdisk
85#
86if [ "${ROOT:0:7}" == "/dev/sd" ]; then
87 # Remove ide hook if root is on sda
88 sed -i "s| ide | |g" /etc/mkinitcpio.conf
89else
90if [ "${ROOT:0:7}" == "/dev/hd" ]; then
91 # Remove pata & sata hook if root is on hda
92 sed -i "s| pata | |g" /etc/mkinitcpio.conf
93 sed -i "s| sata | |g" /etc/mkinitcpio.conf
94fi
95fi
96mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
97#
98# ReInstall grub
99#
100grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
101#
102# Rebuild Language
103#
5e3dc61b 104#perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
fa2637c2
AF
105#
106# Restart snort
107#
108/etc/init.d/snort restart
109#
110# This core-update need a reboot
111/usr/bin/logger -p syslog.emerg -t core-upgrade-28 "Upgrade finished. Please reboot... "' >> /tmp/remove_obsolete_paks