ROOT/boot/grub/grub.cfg
changeset 2 cdf62add5d6f
parent 1 8ff135ba3a93
child 5 6dec881621ea
equal deleted inserted replaced
1:8ff135ba3a93 2:cdf62add5d6f
     4 
     4 
     5 # already done during grub-install
     5 # already done during grub-install
     6 #insmod part_msdos
     6 #insmod part_msdos
     7 #insmod ext2
     7 #insmod ext2
     8 
     8 
     9 search --no-floppy --label --set alix
     9 search --no-floppy --label --set [%ROOTLABEL%]
    10 set timeout=3
    10 set timeout=3
    11 
    11 
    12 menuentry 'Linux' {
    12 menuentry 'Linux' {
    13         echo 'Loading Linux...'
    13         echo 'Loading Linux...'
    14         linux /boot/vmlinuz-2.6.32-5-686 ro quiet console=ttyS0,38400n8 root=LABEL=<XXX>
    14         linux /boot/vmlinuz-2.6.32-5-686 ro quiet console=ttyS0,38400n8 root=LABEL=[%ROOTLABEL%]
    15         echo 'Loading Initrd...'
    15         echo 'Loading Initrd...'
    16         initrd /boot/initrd.img-2.6.32-5-686
    16         initrd /boot/initrd.img-2.6.32-5-686
    17 }
    17 }
    18 
    18