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配置,修改如下:
[email protected]:/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 [email protected]:/data/fs/grub #
console=ttyS0,115200,n8原来为quiet,现在改成console=ttyS0,115200,n8,这样重启后将android设备的串口接到PC上,就可以在PC上通过串口来操作ANDROID的后台了
这也是调试中肯定会用到的方法或手段
时间: 2024-11-05 23:26:41