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