diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:50 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:18:29 +0100 |
commit | 4739146fc6c4de8b16418517bb882312c475195c (patch) | |
tree | a3c29d97d1ead4ad4fa532b1c6bfdb419f160e71 /helpers/lh_chroot_linuximage | |
parent | 1863ed88740575342008ac5f694d03e944bcece2 (diff) | |
download | live-build-4739146fc6c4de8b16418517bb882312c475195c.zip live-build-4739146fc6c4de8b16418517bb882312c475195c.tar.gz |
Adding live-helper 1.0~a6-1.
Diffstat (limited to 'helpers/lh_chroot_linuximage')
-rwxr-xr-x | helpers/lh_chroot_linuximage | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/helpers/lh_chroot_linuximage b/helpers/lh_chroot_linuximage index 0af6e18..e3d3786 100755 --- a/helpers/lh_chroot_linuximage +++ b/helpers/lh_chroot_linuximage @@ -36,17 +36,17 @@ Breakpoint "chroot_linuximage: Init" # Requiring stage file Require_stagefile .stage/bootstrap -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - case "${1}" in install) # Checking stage file Check_stagefile .stage/chroot_linuximage + # Checking lock file + Check_lockfile .lock + + # Creating lock file + Create_lockfile .lock + if [ -f chroot/etc/kernel-img.conf ] then # Saving kernel-img.conf @@ -54,7 +54,11 @@ case "${1}" in fi # Configuring kernel-img.conf - echo "do_initrd = Yes" >> chroot/etc/kernel-img.conf +cat >> chroot/etc/kernel-img.conf << EOF +do_bootloader = No +do_initrd = Yes +warn_initrd = No +EOF if [ "${LIVE_KERNEL_PACKAGES}" != "none" ] then @@ -85,6 +89,12 @@ case "${1}" in ;; remove) + # Checking lock file + Check_lockfile .lock + + # Creating lock file + Create_lockfile .lock + if [ -f chroot/etc/kernel-img.conf.old ] then # Restoring kernel-img.conf file |