summaryrefslogtreecommitdiffstats
path: root/cluster/tree/ka/make_initrd
diff options
context:
space:
mode:
Diffstat (limited to 'cluster/tree/ka/make_initrd')
-rwxr-xr-xcluster/tree/ka/make_initrd44
1 files changed, 44 insertions, 0 deletions
diff --git a/cluster/tree/ka/make_initrd b/cluster/tree/ka/make_initrd
new file mode 100755
index 000000000..8f8a0492d
--- /dev/null
+++ b/cluster/tree/ka/make_initrd
@@ -0,0 +1,44 @@
+#!/bin/bash
+echo Looking for default kernel
+CHROOT=/mnt/disk
+IMG=`cat $CHROOT/etc/lilo.conf | grep default | cut -d "=" -f 2 | sed -e 's/\"//g'`
+KERN="x"
+INITRD=""
+LABEL="x"
+
+modprobe loop
+
+for i in `cat $CHROOT/etc/lilo.conf`; do
+
+ if echo $i | grep image >/dev/null; then
+ KERN=$CHROOT`echo $i | cut -d "=" -f 2`
+ INITRD=""
+ LABEL="x"
+ fi
+ if echo $i | grep label >/dev/null; then
+ LABEL=`echo $i | cut -d "=" -f 2 | sed -e 's/\"//g'`
+ fi
+ if echo $i | grep initrd >/dev/null; then
+ INITRD=`echo $i | cut -d "=" -f 2`
+ fi
+ if [ ${LABEL} == ${IMG} ] && [ ! -z ${INITRD} ]; then
+ echo "Kernel name is $KERN"
+ echo "Initrd name is $INITRD"
+ KERN_VERSION=`/usr/bin/strings $KERN | grep "^2\.[2.6]"| cut -d " " -f 1`
+ if [ -z $KERN_VERSION ]; then
+ echo "No kernel version found !"
+ fi
+ chroot $CHROOT mount /proc
+ mount /dev/ $CHROOT/dev -o bind
+# chroot $CHROOT MAKEDEV loop
+# chroot $CHROOT MAKEDEV fd
+# chroot $CHROOT MAKEDEV hd
+# chroot $CHROOT MAKEDEV sd
+# chroot $CHROOT MAKEDEV md
+# chroot $CHROOT MAKEDEV zero
+ chroot $CHROOT /sbin/mkinitrd -f $INITRD $KERN_VERSION
+ umount $CHROOT/dev
+ chroot $CHROOT umount /proc
+ exit
+ fi
+done