X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=hooks%2Flive;h=48802fc4536be3a97470a9754d3e0ce39247783a;hb=c9f0399f0fd5da9042a4190763e4ecef653af8ce;hp=c18dfc28f81ce2af4fb4087f4e27f03cfec261b8;hpb=5f4437b5100f9c7a90668d3511584ba89c942903;p=live-boot-grml.git diff --git a/hooks/live b/hooks/live index c18dfc2..48802fc 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,6 +90,8 @@ manual_add_modules jffs2 copy_exec /sbin/losetup /sbin manual_add_modules loop manual_add_modules squashfs +manual_add_modules sqlzma +manual_add_modules unlzma # Filesystem: unionfs/aufs manual_add_modules unionfs @@ -99,6 +110,9 @@ manual_add_modules ohci1394 manual_add_modules sbp2 manual_add_modules sr_mod +# Hardware: usb +manual_add_modules sd_mod + # Hardware: network auto_add_modules net @@ -112,7 +126,7 @@ fi copy_exec /usr/bin/md5sum /bin # Program: udev -copy_exec /sbin/udevtrigger /sbin +copy_exec /sbin/udevadm /sbin copy_exec /sbin/udevsettle /sbin copy_exec /usr/bin/udevinfo /bin @@ -121,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 +