adb查看内核LOG信息

在调试内核的时候,如果用串口总要费县到串口,如果能直接用adb logcat 命令就好了,插上USB就可以了,也省去了飞线的步骤:


如何才能实现呢,经过搜索找到了如下的方法:


更改logcat.cpp文件:


第一步:添加头文件 #include <sys/klog.h> //add 


第二步:添加宏 #define KERNEL_TAG "Kernel"


第三部:修改readLogLines函数


在函数中添加红色部分函数就可以了,其他不变


static void readLogLines(log_device_t* devices) 

    log_device_t* dev; 
    int max = 0; 
    int ret; 
    int queued_lines = 0; 
    bool sleep = true; 
    char buffer[256] = {0}; //add by zhaofei  
 
 
    int result; 
    fd_set readset; 
 
 
    for (dev=devices; dev; dev = dev->next) { 
        if (dev->fd > max) { 
            max = dev->fd; 
        } 
    } 
 
 
    while (1) { 
        do { 
            timeval timeout = { 0, 5000 }; // If we oversleep it's ok, i.e. ignore EINTR.  
            FD_ZERO(&readset); 
            for (dev=devices; dev; dev = dev->next) { 
                FD_SET(dev->fd, &readset); 
            } 
            result = select(max + 1, &readset, NULL, NULL, sleep ? NULL : &timeout); 
        } while (result == -1 && errno == EINTR); 
 
 
        if (result >= 0) { 
            for (dev=devices; dev; dev = dev->next) { 
                if (FD_ISSET(dev->fd, &readset)) { 
                    queued_entry_t* entry = new queued_entry_t(); 
                     
                    ret = read(dev->fd, entry->buf, LOGGER_ENTRY_MAX_LEN); 
                    if (ret < 0) { 
                        if (errno == EINTR) { 
                            delete entry; 
                            goto next; 
                        } 
                        if (errno == EAGAIN) { 
                            delete entry; 
                            break; 
                        } 
                        perror("logcat read"); 
                        exit(EXIT_FAILURE); 
                    } 
                    else if (!ret) { 
                        fprintf(stderr, "read: Unexpected EOF!\n"); 
                        exit(EXIT_FAILURE); 
                    } 
 
 
                    entry->entry.msg[entry->entry.len] = '\0'; 
 
 
                    dev->enqueue(entry); 
                    ++queued_lines; 
 
 
#if 1 //read kernel log  
                    if((ret = klogctl(9, buffer, sizeof(buffer))) > 0) { 
                        if((ret = klogctl(2, buffer, sizeof(buffer))) > 0) { 
                            entry->entry.tid = 0; 
                            entry->entry.pid = getpid(); 
                             
                            entry->entry.msg[0] = ANDROID_LOG_INFO; 
                             
                            strcpy(entry->entry.msg+1, KERNEL_TAG); 
                             
                            strncpy(entry->entry.msg+1+sizeof(KERNEL_TAG), buffer, ret); 
                            entry->entry.len = 1 + sizeof(KERNEL_TAG) + ret + 1; 
                            entry->entry.msg[entry->entry.len] = '/0'; 
                             
                        printNextEntry(dev); 
                        } 
                    } 
#endif  
                } 
            } 
 
 
            if (result == 0) { 
                // we did our short timeout trick and there's nothing new  
                // print everything we have and wait for more data  
                sleep = true; 
                while (true) { 
                    chooseFirst(devices, &dev); 
                    if (dev == NULL) { 
                        break; 
                    } 
                    if (g_tail_lines == 0 || queued_lines <= g_tail_lines) { 
                        printNextEntry(dev); 
                    } else { 
                        skipNextEntry(dev); 
                    } 
                    --queued_lines; 
                } 
 
 
                // the caller requested to just dump the log and exit  
                if (g_nonblock) { 
                    exit(0); 
                } 
            } else { 
                // print all that aren't the last in their list  
                sleep = false; 
                while (g_tail_lines == 0 || queued_lines > g_tail_lines) { 
                    chooseFirst(devices, &dev); 
                    if (dev == NULL || dev->queue->next == NULL) { 
                        break; 
                    } 
                    if (g_tail_lines == 0) { 
                        printNextEntry(dev); 
                    } else { 
                        skipNextEntry(dev); 
                    } 
                    --queued_lines; 
                } 
            } 
        } 
next: 
        ; 
    } 



第四步:连接USB 进入调试模式,打开终端 输入命令 adb logcat


此时在内核中用函数PRINTK输出的TRACE就能打印出来了,


如何治显示内核部分的LOG呢,可以用命令


adb logcat -s Kernel


-s参数说明只显示包含LOG_TAG 为Kernel的,这样就只显示内核LOG了
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值