摘要: 获取特定开发人员的提交日记,--author=panzidong 指定提交记录的条数: -n 5 如下所示 root@vmuser:~/tmp/git_stm32cube_stm32f429igt# git log --author=panzidong -n 5commit af5923dcf022 阅读全文
posted @ 2020-07-04 14:01 嵌入式实操 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 目的 本文档用于说明如何通过操作生成imx6 bootchart流程图,以便于做android系统启动优化。 bootchart用途 Bootchart is a system designed to show a graphical display of the activity of a sys 阅读全文
posted @ 2020-07-04 09:14 嵌入式实操 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 强制让内核按单核模式启动 在启动参数里追加 nosmp 或者 maxcpus=0 kernel-parameters的说明如下: nosmp [SMP] Tells an SMP kernel to act as a UP kernel,and disable the IO APIC. legacy 阅读全文
posted @ 2020-07-04 09:11 嵌入式实操 阅读(560) 评论(0) 推荐(0) 编辑
摘要: root@vmuser:~# cat /sys/kernel/debug/clk/clk_summary clock enable_cnt prepare_cnt rate accuracy phase 阅读全文
posted @ 2020-07-04 09:07 嵌入式实操 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 禁止屏幕休眠 consoleblank=0 阅读全文
posted @ 2020-07-04 09:00 嵌入式实操 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 编写应用程序时,如果查看函数的实际执行效率,就可以选择开启内核的CONFIG_FTRACE选项。 上层通过perf-tools配合,就可以查看指定程序的调用情况。 root@vmuser:~/tmp/perf-tools# ./bin/uprobe -s p:/root/a.out:signalHa 阅读全文
posted @ 2020-07-04 08:58 嵌入式实操 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1,L1波段-1.57542GHz (正负偏移10MHz)。 2,L2波段-1.22760GHz。 3,L3波段-1.38105GHz。 4,L4波段-1.84140GHz。 阅读全文
posted @ 2020-07-04 08:52 嵌入式实操 阅读(2495) 评论(0) 推荐(0) 编辑
摘要: 内核空间查看page size arch/arm/include/asm/page.h #define PAGE_SHIFT 12 #define PAGE_SIZE ( 1<< PAGE_SHIFT) 应用层: # getconf PAGESIZE 4096 #include <unistd.h> 阅读全文
posted @ 2020-07-04 08:50 嵌入式实操 阅读(1181) 评论(0) 推荐(0) 编辑