]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/paks/linux-pae/install.sh
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into asterisk-update
[people/pmueller/ipfire-2.x.git] / src / paks / linux-pae / install.sh
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 2 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) 2007-2014 IPFire-Team <info@ipfire.org>. #
21 # #
22 ############################################################################
23 #
24 . /opt/pakfire/lib/functions.sh
25 extract_files
26 #
27 KVER=xxxKVERxxx
28 ROOT=`mount | grep " / " | cut -d" " -f1`
29 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
30 if [ ! -z $ROOTUUID ]; then
31 ROOT="UUID=$ROOTUUID"
32 fi
33
34 if [ -f /boot/grub/grub.conf ]; then
35 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
36 # Nur den letzten Parameter verwenden
37 echo $MOUNT > /dev/null
38 MOUNT=$_
39 if [ ! $MOUNT == "rw" ]; then
40 MOUNT="ro"
41 fi
42
43 ENTRY=`grep "savedefault" /boot/grub/grub.conf | tail -n 1`
44 # Nur den letzten Parameter verwenden
45 echo $ENTRY > /dev/null
46 let ENTRY=$_+1
47
48 #Check if the system use serial console...
49 if [ "$(grep "^serial" /boot/grub/grub.conf)" == "" ]; then
50 console=""
51 else
52 console=" console=ttyS0,115200n8"
53 fi
54
55 #
56 # backup grub.conf
57 #
58 cp /boot/grub/grub.conf /boot/grub/grub-backup-$KVER-pae_install.conf
59 #
60 # Add new Entry to grub.conf
61 #
62 echo "" >> /boot/grub/grub.conf
63 echo "title IPFire (PAE-Kernel)" >> /boot/grub/grub.conf
64 echo " kernel /vmlinuz-$KVER-ipfire-pae root=$ROOT panic=10$console $MOUNT" >> /boot/grub/grub.conf
65 echo " initrd /ipfirerd-$KVER-pae.img" >> /boot/grub/grub.conf
66 echo " savedefault $ENTRY" >> /boot/grub/grub.conf
67 fi
68
69 #
70 # Create new module depency
71 #
72 depmod -a $KVER-ipfire-pae
73 #
74 # Made initramdisk
75 #
76 /usr/bin/dracut --force --xz /boot/initramfs-$KVER-ipfire-pae.img $KVER-ipfire-pae
77
78 #
79 # Update grub2 config
80 #
81 grub-mkconfig > /boot/grub/grub.cfg
82
83 # request a reboot if pae is supported
84 if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
85 touch /var/run/need_reboot
86 fi
87 sync && sync