X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=hooks%2Flive;h=56425ad80aac3c8a15ede13f019604b620bfff38;hb=824751b466aa756868883aa38cb8d0f1fc4c51bb;hp=a4aced3e99af40804ccee99ac80e605182fe3150;hpb=14e49950e6ee8685a9af0b112fd7e57d83118c6e;p=live-boot-grml.git diff --git a/hooks/live b/hooks/live index a4aced3..56425ad 100755 --- a/hooks/live +++ b/hooks/live @@ -46,6 +46,15 @@ copy_exec /usr/share/live-initramfs/live-preseed /bin cp /usr/share/initramfs-tools/scripts/live-functions "${DESTDIR}"/scripts cp /usr/share/initramfs-tools/scripts/live-helpers "${DESTDIR}"/scripts +# klibc dependencies +for FILE in /lib/libacl* /lib/libblkid* /lib/libuuid* /lib/libdevmapper* /lib/libattr* +do + if [ ! -e "${DESTDIR}"/"${FILE}" ] + then + cp -a "${FILE}" "${DESTDIR}"/"${FILE}" + fi +done + # Handling other stuff # Configuration: keymap (usefull when using encryption) @@ -81,8 +90,8 @@ manual_add_modules jffs2 copy_exec /sbin/losetup /sbin manual_add_modules loop manual_add_modules squashfs -manual_add_modules unlzma manual_add_modules sqlzma +manual_add_modules unlzma # Filesystem: unionfs/aufs manual_add_modules unionfs @@ -126,3 +135,24 @@ if [ -x /usr/bin/wget ] then copy_exec /usr/bin/wget /bin fi + +# FUSE kernel module +manual_add_modules fuse + +# FUSE filesystem: httpfs +if [ -x /usr/bin/httpfs_ssl ] +then + copy_exec /usr/bin/httpfs2_ssl /bin/httpfs +else + if [ -x /usr/bin/httpfs ] + then + copy_exec /usr/bin/httpfs2 /bin/httpfs + fi +fi + +# FUSE filesystem: curlftpfs +if [ -x /usr/bin/curlftpfs ] +then + copy_exec /usr/bin/curlftpfs /bin +fi +