码迷,mamicode.com
首页 > 移动开发 > 详细

android-x86如何开启串口调试

时间:2014-12-28 13:00:17      阅读:780      评论:0      收藏:0      [点我收藏+]

标签:

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 # 

console=ttyS0,115200,n8原来为quiet,现在改成console=ttyS0,115200,n8,这样重启后将android设备的串口接到PC上,就可以在PC上通过串口来操作ANDROID的后台了

这也是调试中肯定会用到的方法或手段

android-x86如何开启串口调试

标签:

原文地址:http://blog.csdn.net/xiangpingli/article/details/42212737

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!