摘要: 阅读全文
posted @ 2020-12-04 13:01 Zackary丶Liu 阅读(162) 评论(0) 推荐(0) 编辑
摘要: perl 提示: Can't locate List/BinarySearch.pm in @INC (you may need to install the List::BinarySearch module) 尝试解决: perl -MCPAN -e "install List::BinaryS 阅读全文
posted @ 2020-11-30 14:37 Zackary丶Liu 阅读(250) 评论(0) 推荐(0) 编辑
摘要: UBOOT版本:2017.11 一、PHY 简介 Media Independent Interface ( MII ),介质独立接口,起初是定义 100M 以太网(Fast Ethernet)的 MAC 层与 PHY 芯片之间的传输标准。 MAC 与 PHY 之间的 MII 连接可以是可插拔的连接 阅读全文
posted @ 2020-11-28 10:51 Zackary丶Liu 阅读(5280) 评论(0) 推荐(3) 编辑
摘要: 一、简介 1. 关于它的定义(From 官网): pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options 阅读全文
posted @ 2020-11-20 12:06 Zackary丶Liu 阅读(555) 评论(0) 推荐(0) 编辑
摘要: 测试环境: 运行环境:ubuntu-20.04 内核版本:5.10.0 一、接口简介 在系统运行过程中,维护者可以通过控制 pr_debug 的开关来动态的配置某个模块中的调试信息是否输出,相对于 printk 来说,它显然是更加灵活。 二、使用方法 如内核 printk.h 文件中定义: 1 /* 阅读全文
posted @ 2020-11-11 00:23 Zackary丶Liu 阅读(4468) 评论(0) 推荐(0) 编辑
摘要: 一、测试环境 运行环境:server: arm64 linux-4.14(开发板) host: x86_64 ubuntu-20.04(主机) glic 版本:2.30 二、流程分析: 接上篇的疑问继续,前提条件,笔者的运行环境中没有包含任何 libnss 库, 测试程序如下: 1 #include 阅读全文
posted @ 2020-11-07 12:40 Zackary丶Liu 阅读(4894) 评论(0) 推荐(1) 编辑
摘要: ALL GDB commands: COMMANDDESCRIPTION help List gdb command categories help category List gdb commands of category help command Displays description of 阅读全文
posted @ 2020-11-06 13:45 Zackary丶Liu 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 一、测试环境: 运行环境:server: arm64 linux-4.14(开发板) host: x86_64 ubuntu-20.04(主机) 工具版本:gdb-10.1 二、工具自我介绍: 看看官方怎么说, GDB, the GNU Project debugger, allows you to 阅读全文
posted @ 2020-11-06 12:41 Zackary丶Liu 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 运行环境:ubuntu-20.04 工具版本:valgrind-3.16.1 1、工具自我介绍: Valgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tool 阅读全文
posted @ 2020-11-01 18:14 Zackary丶Liu 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 简介: 简单的 LISP 加减乘除语句解析并计算结果,四种运算符号为 add、sub、mul、div,分别为加减乘除。其中数字部分皆为整数。除法取整,除数为零输出 error。试题出处 例子: (add 3 5 7) 结果为 15 (sub 1 9) 结果为 -8 (mul 0 9) 结果为 0 ( 阅读全文
posted @ 2020-10-11 00:30 Zackary丶Liu 阅读(843) 评论(0) 推荐(0) 编辑