./out/host/linux-x86/bin/adb connect <ip address of your device>
./out/host/linux-x86/bin/adb logcat
or you can type: logcat
from the terminal emulator in dev tools on the device.
If your trying to debug something early in the boot process, it might
be more useful to get a host-to-host usb cable <type-a to type-a> and
setup usb gadgets to run in device mode so you can use adb over usb.
Otherwise, you have to add console=ttyUSB0,115200 and compile in a usb
serial driver and usb serial console support (or ttyS0 if you actually
have a serial port), and capture the output of the serial console to a
log file before you start doing this.
As soon as you see a prompt on the serial console quickly type: logcat
This is what I've been doing, but if someone has a better way, it
would be really helpful!
> --
> You received this message because you are subscribed to the Google Groups "Android-x86" group.
> To post to this group, send email to andro...@googlegroups.com.
> To unsubscribe from this group, send email to android-x86...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/android-x86?hl=en.
>
>
-Bryan
Since android-x86 2.2, the output of logcat
will be saved to /data/log.txt in debug mode.
If you run non-debug mode, you may start
logcat service manually:
start logcat
--
Chih-Wei
Android-x86 project
http://www.android-x86.org
ah. thanks CW!
> --
> Chih-Wei
> Android-x86 project
> http://www.android-x86.org
>