>> 3.0.2c. Adding LVM2 args code to gen_determineargs.sh.

git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@154 67a159dc-881f-0410-a524-ba9dfbe2cb84
cleanup-cruft
Tim Yamin 20 years ago
parent 7a0cdb645f
commit 4f22a22878

@ -215,4 +215,11 @@ determine_real_args() {
UDEV=0
DEVFS=1
fi
if isTrue "${CMD_LVM2}"
then
LVM2=1
else
LVM2=0
fi
}

@ -93,7 +93,7 @@ create_base_initrd_sys() {
# gen_die "could not uncompress devfsd.conf"
# LVM2
if [ "${CMD_LVM2}" -eq '1' ]
if [ "${LVM2}" -eq '1' ]
then
if [ -e '/sbin/lvm' ] && ldd /sbin/lvm|grep -q 'not a dynamic executable';
then
@ -130,7 +130,7 @@ create_base_initrd_sys() {
# EVMS2
if [ -e '/sbin/evms_activate' ]
then
if [ "${CMD_NOEVMS2}" -ne '1' ]
if [ "${CMD_NOEVMS2}" != '1' ]
then
print_info 1 'EVMS2: Adding support...'
mkdir -p ${TEMP}/initrd-temp/lib

Loading…
Cancel
Save