MTK6582模块如何采用USER版本调试,查看信息
一、如何开启Uart 的控制台(console/sh)
system/core/rootdir/init.rc
515 service console /system/bin/sh
516 class core
517 console
518 disabled
519 user shell //user root
520 seclabel u:r:shell:s0 // seclabel u:r:root:s0
521
522 on property:ro.debuggable=1 //1:开启end版本的串口输入平台 0:user版本的串口输入平台
523 start console
二、在配置文件 /home/jiang/mtkql/MTK6582QL/MT6582L-QL/kernel-3.10/arch/arm/configs/xxx_debug_defconfig(xxx_defconfig)里面可以调整打印级别:
CONFIG_CMDLINE="console=tty0 console=ttyMT3,921600n1 root=/dev/ram vmalloc=496M slub_max_order=0 slub_debug=O "
#CONFIG_CMDLINE="loglevel=0 console=tty0 console=ttyMT3,921600n1 root=/dev/ram vmalloc=496M slub_max_order=0 slub_debug=O "
也可以不调整
三、在user版本中,可以采用end版本的lk.bin 文件替换user版本中的lk.bin文件,这样开机就可以有打印信息出来了!
四、在打印中,想进入“adb模式”(串口输入模式),可以右键粘贴 echo 0 > /proc/sys/kernel/printk 这样就进入串口输入模式了! 褀联智能科技提供
|