#!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry "Kubuntu Stable" --class ubuntu --class gnu-linux --class gnu --class os { insmod ext2 set root='(hd0,1)' linux /vmlinuz root=/dev/sda1 ro vga=794 initrd /initrd.img } menuentry "Kubuntu Testing" { insmod ext2 set root='(hd0,2)' linux /vmlinuz root=/dev/sda2 ro vga=794 initrd /initrd.img } menuentry "Kubuntu LTS" { insmod ext2 set root='(hd1,2)' linux /vmlinuz root=/dev/sdb2 ro vga=794 initrd /initrd.img } menuentry "Debian Squeeze - Nouveau" { insmod ext2 set root='(hd0,3)' linux /vmlinuz root=/dev/sda3 ro initrd /initrd.img } menuentry "Aptosid" { insmod ext2 set root='(hd1,1)' linux /vmlinuz root=/dev/sdb1 ro vga=794 initrd /initrd.img } menuentry "Windows Vista (loader)" { insmod ntfs set root='(hd1,3)' search --no-floppy --fs-uuid --set 4010cbbd10cbb864 chainloader +1 } menuentry "System-1" { insmod ext2 set root='(hd2,1)' linux /vmlinuz root=/dev/sdc1 ro vga=794 initrd /initrd.img } menuentry "System-2" { insmod ext2 set root='(hd2,2)' linux /vmlinuz root=/dev/sdc2 ro vga=794 initrd /initrd.img } menuentry "System-3" { insmod ext2 set root='(hd2,3)' linux /vmlinuz root=/dev/sdc3 ro vga=794 initrd /initrd.img }