bf6b7d947924ee48488a93c56372e91b422c3c22
[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 fcopy /etc/initramfs-tools/conf.d/xz-compress
14
15 FILE=$(ls -1 $target/boot/vmlinuz-* 2>/dev/null| sort -r | head -1)
16 KERNELVERSION=$(echo "${FILE##$target/boot/vmlinuz-}")
17
18 if [ -z "$KERNELVERSION" ] ; then
19    echo "Error: No kernel found, can not create initramfs. Exiting.">&2
20    exit 1
21 fi
22
23 if [ -f $target/usr/share/initramfs-tools/scripts/live ] ; then
24    $ROOTCMD update-initramfs -c -t -k $KERNELVERSION
25 else
26    echo "Error: live-initramfs does not seem to be present, can not create initramfs. Exiting.">&2
27    exit 1
28 fi
29
30 ## END OF FILE #################################################################
31 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3