标签:
android-x86的grub是采用相对UBuntu古老一些的方式,来grub kernel的
如何开启android-x86的串口调试模式呢,采用如下步骤:
(1)mount sda1:
mkdir /data/fs
mount -t ext2 /dev/block/sda1 /data/fs
(2)修改menu.lst文件
这个文件保存grub配置,修改如下:
root@x86:/data/fs/grub # cat menu.lst default=0 timeout=6 splashimage=/grub/android-x86.xpm.gz root (hd0,0) title Android-x86 4.4-r1 kernel /android-4.4-r1/kernel console=ttyS0,115200,n8 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 root@x86:/data/fs/grub #
这也是调试中肯定会用到的方法或手段
标签:
原文地址:http://blog.csdn.net/xiangpingli/article/details/42212737