Also allowing hook= to specify files inside the image through file:// prefix.
authorLuigi Capriotti <l.capriotti@xbmc.org>
Sun, 25 Oct 2009 08:50:07 +0000 (09:50 +0100)
committerDaniel Baumann <daniel@debian.org>
Wed, 9 Mar 2011 16:48:06 +0000 (17:48 +0100)
scripts/live-bottom/99hook

index 17895ca..8809800 100755 (executable)
@@ -32,7 +32,14 @@ log_begin_msg "Executing custom hook script"
 # live-initramfs script
 
 cd /root
-chroot /root wget "${HOOK}"
+
+if [ $(echo "${HOOK}" | grep file:\/\/) ]
+then
+       LOCALFILE=$(echo ${HOOK} | sed "s/file\:\/\///")
+       cp ${LOCALFILE} /root
+else
+       chroot /root wget "${HOOK}"
+fi
 
 FILE="$(basename ${HOOK})"