2d286ea1b728635747e6eb89e733bf98896c1f00
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 10-build-initramfs
1 #!/bin/bash
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/10-build-initramfs
3 # Purpose:       configure live-initramfs and build initramfs for booting
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -e
10
11 fcopy /usr/share/initramfs-tools/scripts/init-top/grml
12 fcopy /etc/initramfs-tools/hooks/000-udev-shutup
13
14 FILE=$(ls -1 $target/boot/vmlinuz-* 2>/dev/null| sort -r | head -1)
15 KERNELVERSION=$(echo "${FILE##$target/boot/vmlinuz-}")
16
17 if [ -z "$KERNELVERSION" ] ; then
18    echo "Error: No kernel found, can not create initramfs. Exiting.">&2
19    exit 1
20 fi
21
22 if [ -f $target/usr/share/initramfs-tools/scripts/live ] ; then
23    $ROOTCMD update-initramfs -c -t -k $KERNELVERSION
24 else
25    echo "Error: live-initramfs does not seem to be present, can not create initramfs. Exiting.">&2
26    exit 1
27 fi
28
29 ## END OF FILE #################################################################
30 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3