[blfs-support] initramfs mistake

2012-05-01 Thread xinglp
do_mount_root()
{
   mkdir /.root
   [ -n $rootflags ]  rootflags=$rootflags,
   rootflags=$rootflags$ro

   case $root in
  /dev/* ) device=$root ;;
  UUID=* ) eval $root; device=/dev/disk/by-uuid/$UUID  ;;
  LABEL=*) eval $root; device=/dev/disk/by-uuid/$LABEL ;;

  LABEL=*) eval $root; device=/dev/disk/by-label/$LABEL ;;
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] initramfs mistake

2012-05-01 Thread Bruce Dubbs
xinglp wrote:
 do_mount_root()
 {
mkdir /.root
[ -n $rootflags ]  rootflags=$rootflags,
rootflags=$rootflags$ro
 
case $root in
   /dev/* ) device=$root ;;
   UUID=* ) eval $root; device=/dev/disk/by-uuid/$UUID  ;;
   LABEL=*) eval $root; device=/dev/disk/by-uuid/$LABEL ;;
 
   LABEL=*) eval $root; device=/dev/disk/by-label/$LABEL ;;

Fixed.  Thanks.

   -- Bruce

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page