X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F10-configure-initramfs;fp=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F10-configure-initramfs;h=0000000000000000000000000000000000000000;hb=019fbefe5b29bb4e95808163f0cd645640cad30c;hp=3dea9ae5ddb244aeb57f3ec4084006d03cb0102c;hpb=9a1ee76bc3fa423968d666e36422000e4ee979d6;p=grml-live-grml.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/10-configure-initramfs b/etc/grml/fai/config/scripts/GRMLBASE/10-configure-initramfs deleted file mode 100755 index 3dea9ae..0000000 --- a/etc/grml/fai/config/scripts/GRMLBASE/10-configure-initramfs +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# Filename: ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/10-build-initramfs -# Purpose: configure live-initramfs and build initramfs for booting -# Authors: grml-team (grml.org), (c) Michael Prokop -# Bug-Reports: see http://grml.org/bugs/ -# License: This file is licensed under the GPL v2 or any later version. -################################################################################ - -set -u -set -e - -fcopy -v /usr/share/initramfs-tools/scripts/init-top/grml -fcopy -v /etc/initramfs-tools/hooks/000-udev-shutup -fcopy -v /etc/initramfs-tools/conf.d/xz-compress - -if ! [ -f $target/usr/share/initramfs-tools/scripts/live ] ; then - echo "Error: live-boot/-initramfs does not seem to be present, can not create initramfs. Exiting.">&2 - exit 1 -fi - -# The initramfs itself will be created through grml-live script itself. - -## END OF FILE ################################################################# -# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2