#!/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 "Xen 4.5.0 / elementaryOS Luna 0.2 / Linux 3.18.1 / credit scheduler" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' echo 'Loading Xen 4.5.0...' multiboot /boot/xen-4.5.0.gz reboot=0 dom0_mem=6144M loglevel=all guest_loglevel=all com1=115200,8n1 echo 'Loading Linux 3.18.1...' module /boot/vmlinuz-3.18.1 reboot=0 placeholder root=/dev/sda2 ro earlyprintk=xen debug loglevel=8 xen-pciback.hide=(01:00.0)(01:00.1) echo 'Loading initial ramdisk...' module /boot/initrd.img-3.18.1 } # This was the default kernel that elementaryOS shipped with... I kept it around menuentry "Xen 4.5.0 / elementaryOS Luna 0.2 / Linux 3.2.0-51 / credit scheduler" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' echo 'Loading Xen 4.5.0...' multiboot /boot/xen-4.5.0.gz dom0_mem=6144M loglevel=all guest_loglevel=all com1=115200,8n1 iommu=debug echo 'Loading Linux 3.2.0-51-generic...' module /boot/vmlinuz-3.2.0-51-generic placeholder root=/dev/sda2 ro earlyprintk=xen debug loglevel=8 snd-hda-intel.blacklist=1 xen-pciback.hide=(01:00.0)(01:00.1) echo 'Loading initial ramdisk...' module /boot/initrd.img-3.2.0-51-generic }