--- trunk/mkinitrd-magellan/livecd/linuxrc.sh 2008/01/25 11:11:10 672 +++ trunk/mkinitrd-magellan/livecd/linuxrc.sh 2008/01/25 11:12:52 673 @@ -1,5 +1,5 @@ #!/bin/sh -# $Header: /home/cvsd/magellan-cvs/magellan-src/mkinitrd-magellan/livecd/linuxrc.sh,v 1.4 2008-01-21 23:24:03 niro Exp $ +# $Header: /home/cvsd/magellan-cvs/magellan-src/mkinitrd-magellan/livecd/linuxrc.sh,v 1.5 2008-01-25 11:12:52 niro Exp $ # loads given kernel modules load_kernel_modules() @@ -57,7 +57,7 @@ DOUSB=no DOSATA=no DOFB=no -NOPATA=no +DOPATA=no FORCED_ROOTFS="" ## starts here ## @@ -85,8 +85,8 @@ dofb) DOFB=yes ;; - nopata) - NOPATA=yes + dopata) + DOPATA=yes ;; rootfs=*) FORCED_ROOTFS="${i#*=}" @@ -97,7 +97,7 @@ # now load all needed modules [ "${DOFB}" = "yes" ] && load_kernel_modules "framebuffer" load_kernel_modules "generic" -[ "${NOPATA}" != "yes" ] && load_kernel_modules "pata" +[ "${DOPATA}" = "yes" ] && load_kernel_modules "pata" [ "${DOSCSI}" = "yes" ] && load_kernel_modules "scsi" [ "${DOUSB}" = "yes" ] && load_kernel_modules "usb" [ "${DOSATA}" = "yes" ] && load_kernel_modules "sata"