vp-build/templates/lvm2/files/lvm2.initramfs-hook
Juan RP 2ca66d70b5 lvm2: build lvm and dmsetup as static, use them for the initramfs.
Bump revision for both packages.

--HG--
extra : convert_revision : 2f321102058adab653a9f224dca256009143af06
2009-10-18 07:55:30 +02:00

34 lines
485 B
Bash

#!/bin/sh
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
prereqs)
prereqs
exit 0
;;
esac
if [ ! -x /sbin/lvm.static -o ! -x /sbin/dmsetup.static ]; then
exit 0
fi
. /usr/share/initramfs-tools/hook-functions
if [ -e /etc/lvm/lvm.conf ]; then
mkdir -p ${DESTDIR}/etc/lvm
cp /etc/lvm/lvm.conf ${DESTDIR}/etc/lvm/
fi
copy_exec /sbin/dmsetup.static /sbin/dmsetup
copy_exec /sbin/lvm.static /sbin/lvm
for x in dm_mod dm_snapshot dm_mirror; do
manual_add_modules ${x}
done