From ce86dbc9495ae6e30419d7d39c4ff2776280bb01 Mon Sep 17 00:00:00 2001 From: Tim Yamin Date: Sat, 9 Oct 2004 19:26:42 +0000 Subject: [PATCH] vgscan >> lvm; bug #44091. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@140 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- gen_initrd.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gen_initrd.sh b/gen_initrd.sh index 84ecbaf..f0d473e 100644 --- a/gen_initrd.sh +++ b/gen_initrd.sh @@ -91,14 +91,16 @@ create_base_initrd_sys() { # gen_die "could not uncompress devfsd.conf" # LVM2 - if [ -e '/sbin/vgscan.static' -a -e '/sbin/vgchange.static' ] + if [ -e '/sbin/lvm' ] && ldd /sbin/lvm|grep -q 'not a dynamic executable'; then if [ "${CMD_NOLVM2}" != '1' ] then - cp /sbin/vgscan.static "${TEMP}/initrd-temp/bin/vgscan" || - gen_die 'Could not copy over vgscan!' - cp /sbin/vgchange.static "${TEMP}/initrd-temp/bin/vgchange" || - gen_die 'Could not copy over vgchange!' + cp /sbin/lvm "${TEMP}/initrd-temp/bin/lvm" || + gen_die 'Could not copy over lvm!' + ln -sf "${TEMP}/initrd-temp/bin/lvm" "${TEMP}/initrd-temp/bin/vgscan" || + gen_die 'Could not symlink lvm -> vgscan!' + ln -sf "${TEMP}/initrd-temp/bin/lvm" "${TEMP}/initrd-temp/bin/vgchange" || + gen_die 'Could not symlink lvm -> vgchange!' fi # else # print_warning 1 "initrd: No LVM2 static binaries found; skipping support..." -- 2.26.2