Source: live-boot-initramfs-tools
Version: 3.0~a33-1
Severity: grave
Tags: patch
Justification: renders package unusable
Because of the restructuring of the live-boot package there are some
issues with the initramfs hook. I have added a patch, wich will fix the
mentioned error.
Best regards,
Lars Eric Scheidler
-- System Information:
Debian Release: wheezy/sid
APT prefers testing
APT policy: (990, 'testing'), (500, 'stable-backports'), (50, 'unstable'),
(50, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Naur live-boot-3.0~a33.orig/backends/initramfs-tools/live.hook live-boot-3.0~a33/backends/initramfs-tools/live.hook
--- live-boot-3.0~a33.orig/backends/initramfs-tools/live.hook 2012-06-07 08:56:53.000000000 +0200
+++ live-boot-3.0~a33/backends/initramfs-tools/live.hook 2012-06-27 14:45:32.431953235 +0200
@@ -42,7 +42,7 @@
# Handling live-boot
-if [ ! -e /usr/share/live-boot ]
+if [ ! -e /lib/live/boot ]
then
echo "W: live-boot-initramfs-tools (backend) installed without live-boot,"
echo "W: this initramfs will *NOT* have live support."
diff -Naur live-boot-3.0~a33.orig/backends/initramfs-tools/live.script live-boot-3.0~a33/backends/initramfs-tools/live.script
--- live-boot-3.0~a33.orig/backends/initramfs-tools/live.script 2012-06-07 08:56:53.000000000 +0200
+++ live-boot-3.0~a33/backends/initramfs-tools/live.script 2012-06-27 14:45:32.523953685 +0200
@@ -4,5 +4,5 @@
if [ -e /lib/live/boot.sh ]
then
- /lib/live/boot.sh ${@}
+ . /lib/live/boot.sh ${@}
fi