Skip to content

Commit

Permalink
Sorting some lines in live hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-baumann committed Apr 13, 2008
1 parent 31a79c1 commit 949eb8c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions hooks/live
Expand Up @@ -46,6 +46,12 @@ 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 hidden_klibc_dep_library in libacl libblkid libuuid libdevmapper libattr
do
cp -a /lib/${hidden_klibc_dep_library}.so.* "${DESTDIR}"/lib
done

# Handling other stuff

# Configuration: keymap (usefull when using encryption)
Expand Down Expand Up @@ -81,8 +87,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
Expand Down Expand Up @@ -126,9 +132,3 @@ if [ -x /usr/bin/wget ]
then
copy_exec /usr/bin/wget /bin
fi

# Fix missing klibc deps
for hidden_klibc_dep_library in libacl libblkid libuuid libdevmapper libattr
do
cp -a /lib/${hidden_klibc_dep_library}.so.* ${DESTDIR}/lib
done

0 comments on commit 949eb8c

Please sign in to comment.