]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/paks/linux-pae/install.sh
squid: Add NTLM authentication against Windows Active Directory servers.
[people/pmueller/ipfire-2.x.git] / src / paks / linux-pae / install.sh
CommitLineData
26c1cc71
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 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# #
c36da4cb 20# Copyright (C) 2007-2013 IPFire-Team <info@ipfire.org>. #
26c1cc71
AF
21# #
22############################################################################
23#
24. /opt/pakfire/lib/functions.sh
25extract_files
26#
cc03d52e 27KVER=xxxKVERxxx
26c1cc71
AF
28ROOT=`mount | grep " / " | cut -d" " -f1`
29ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
30if [ ! -z $ROOTUUID ]; then
31 ROOT="UUID=$ROOTUUID"
32fi
33
34MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
35# Nur den letzten Parameter verwenden
36echo $MOUNT > /dev/null
37MOUNT=$_
38if [ ! $MOUNT == "rw" ]; then
39 MOUNT="ro"
40fi
41
42ENTRY=`grep "savedefault" /boot/grub/grub.conf | tail -n 1`
43# Nur den letzten Parameter verwenden
44echo $ENTRY > /dev/null
45let ENTRY=$_+1
06f626f9
AF
46
47#Check if the system use serial console...
48if [ "$(grep "^serial" /boot/grub/grub.conf)" == "" ]; then
49 console=""
50else
13008f32 51 console=" console=ttyS0,115200n8"
06f626f9
AF
52fi
53
26c1cc71
AF
54#
55# backup grub.conf
56#
c36da4cb 57cp /boot/grub/grub.conf /boot/grub/grub-backup-$KVER-pae_install.conf
26c1cc71
AF
58#
59# Add new Entry to grub.conf
60#
61echo "" >> /boot/grub/grub.conf
62echo "title IPFire (PAE-Kernel)" >> /boot/grub/grub.conf
06f626f9 63echo " kernel /vmlinuz-$KVER-ipfire-pae root=$ROOT panic=10$console $MOUNT" >> /boot/grub/grub.conf
26c1cc71
AF
64echo " initrd /ipfirerd-$KVER-pae.img" >> /boot/grub/grub.conf
65echo " savedefault $ENTRY" >> /boot/grub/grub.conf
66#
26c1cc71
AF
67# Create new module depency
68#
69depmod -a $KVER-ipfire-pae
44ed2a42
AF
70#
71# Made initramdisk
72#
73/sbin/dracut --force --verbose /boot/ipfirerd-$KVER-pae.img $KVER-ipfire-pae
8df8a869
AF
74
75# Default pae and request a reboot if pae is supported
76if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
77 grub-set-default $ENTRY
78 touch /var/run/need_reboot
79fi
13008f32 80sync && sync