level 14
最简单的就是改boot.ini,把安装盘里面的grldr、grldr.mbr‘、menu.lst复制到C盘,添加一行:
c:\grldr.mbr="安卓 4.4 x86"
然后修改menu.lst,应记事本打开,把下面的复制进去:
default=0
#等待时间
timeout=6
#启动图像,这个不要了,想要可以自己改目录,从安装盘里面复制出来,4.4用的grub4dos4.6,支持bmp
#splashimage=/grub/android-x86.xpm.gz
#root (hd0,0) 这个不要了
#查找所有分区,找到安卓安装目录,这个目录名你可以自己改
find --set-root /android-4.4-r1/system.img
title Android-x86 4.4-r1
kernel /android-4.4-r1/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86 video=-16 SRC=/android-4.4-r1
initrd /android-4.4-r1/initrd.img
title Android-x86 4.4-r1 (Debug mode)
kernel /android-4.4-r1/kernel root=/dev/ram0 androidboot.hardware=android_x86 video=-16 DEBUG=2 SRC=/android-4.4-r1
initrd /android-4.4-r1/initrd.img
title Android-x86 4.4-r1 (Debug nomodeset)
kernel /android-4.4-r1/kernel nomodeset root=/dev/ram0 androidboot.hardware=android_x86 video=-16 DEBUG=2 SRC=/android-4.4-r1
initrd /android-4.4-r1/initrd.img
title Android-x86 4.4-r1 (Debug video=LVDS-1:d)
kernel /android-4.4-r1/kernel video=LVDS-1:d root=/dev/ram0 androidboot.hardware=android_x86 video=-16 DEBUG=2 SRC=/android-4.4-r1
initrd /android-4.4-r1/initrd.img
title Windows
rootnoverify (hd0,0)
chainloader +1
2014年10月19日 04点10分