1
2
3
4
5
6
7
8
9
10 | #!/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 "Android5" {
set root=(hd0,8)
linux /android-2014-12-25/kernel quiet root=UUID=2ac96bde-00ce-47f8-b3d5-dbf528fa004a androidboot.hardware=android_x86 SRC=/android-2014-12-25 DATA= video=-16
initrd /android-2014-12-25/initrd.img
}
|