|
本帖最后由 chishingchan 于 2015-12-26 19:02 编辑
最近玩 android-x86 ,想模仿原 isolinux 的界面更换为 grub4dos 启动。详情如下:
- default 0
- timeout 60
- color normal=0x0F highlight=0x0E helptext=0x0F heading=0x0F standard=0x0F border=0x0F
- graphicsmode -1 640 480
- splashimage /grub4dos/android-x86.bmp.gz
- font /grub4dos/unifont.gz
- title Live CD - Run Android-x86 without installation \n 运行 Android-x86 并不进行安装
- kernel /kernel root=/dev/ram0 androidboot.hardware=android_x86 quiet SRC= DATA=
- initrd /initrd.img
- title Live CD - VESA mode \n 以 VESA 模式运行 Android-x86
- kernel /kernel root=/dev/ram0 androidboot.hardware=android_x86 quiet nomodeset vga=788 SRC= DATA=
- initrd /initrd.img
- title Live CD - Debug mode \n 以调试模式运行 Android-x86
- kernel /kernel root=/dev/ram0 androidboot.hardware=android_x86 vga=788 DEBUG=2 SRC= DATA=
- initrd /initrd.img
- title Installation - Install Android-x86 to harddisk \n 安装 Android-x86 到硬盘
- kernel /kernel root=/dev/ram0 androidboot.hardware=android_x86 INSTALL=1 DEBUG=
- initrd /initrd.img
- title Starting Windows from harddisk \n 启动硬盘上的 Windows
- find --set-root --ignore-floppies --ignore-cd /bootmgr || find --set-root --ignore-floppies --ignore-cd /ntldr
- map () (hd0)
- map (hd0) ()
- map --rehook
- find --set-root --ignore-floppies --ignore-cd /bootmgr || find --set-root --ignore-floppies --ignore-cd /ntldr
- chainloader /bootmgr || chainloader /ntldr
- title Reboot \n 重新启动
- reboot
- title Power off \n 关闭电源
- halt
复制代码
使用 Qemu启动测试器.exe 运行 ISO 测试,无论使用 android-x86.bmp.gz 或者 android-x86.bmp 都无法显示出图片。求指教,谢谢!
|
|