07 2019 档案
摘要:答: git cherry-pick --abort
阅读全文
摘要:1. notes翻译为中文评注 2. notes出现的作用 避免某一次commit的内容修改导致当前以及随后的commit发生变化,相当于在当前的commit后面追加一些信息,如: 某次commit的内容如下: (git log 12345678901234567890123456789012345
阅读全文
摘要:1. 仓库地址 git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git https://kernel.googlesource.com/pub/scm/linux/kernel/git/robh/linux.git https://g
阅读全文
摘要:1. 工具名 typora 2. 工具官网 https://www.typora.io
阅读全文
摘要:可参考示例:见'git grep host-build.mk package/{system,utils}'
阅读全文
摘要:答: 直接在make命令的后面加上参数,如: make HOST_CFLAGS=-I. 注意事项: HOST_CFLAGS变量将会替换相应Makefile中的HOST_CFLAGS,也就是Makefile中的HOST_CFLAGS将被覆盖掉
阅读全文
摘要:1. 最简用法 patch -p1 < jello.patch
阅读全文
摘要:答: umask 022即可
阅读全文
摘要:答: 使用ldconfig -p即可
阅读全文
摘要:答: ispell,官网在此
阅读全文
摘要:答: ghostview,官网在这里
阅读全文
摘要:答: dvips,此工具能将由Latex或Tex生成的DVI文件转换成PostScript文件,官网在此
阅读全文
摘要:仓库地址: git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
阅读全文
摘要:1. 有哪些接口? 1.1 devm_rtc_device_register 1.2 devm_rtc_allocate_device和 rtc_register_device 2. 1.1与1.2有何相同点? 都是一样的功能,分配内存然后注册rtc设备 3. 1.1与1.2有何异同? 1.1是直接
阅读全文
摘要:答:笔者通过重新编译内核和根文件系统解决了此问题 (笔者使用的是openwrt系统) 分析: 1. ’Failed to find the folder holding the modules‘这句log从哪里来? 要知道从哪里来,那么扒一扒insmod这个工具的源码吧 1.1 注意:在openwr
阅读全文
摘要:1. 原型 #define wait_event_interruptible_timeout(wq_head, condition, timeout) \ ({ \ long __ret = timeout; \ might_sleep(); \ if (!___wait_cond_timeout(
阅读全文
摘要:1. 使用clock_gettime接口即可 2. clock_gettime的使用方法: 2.1 定义一个结构体 struct timespec ts; 2.2 调用clock_gettime获取当前时间戳 clock_gettime(CLOCK_MONOTONIC, &ts); 2.3 打印时间
阅读全文
摘要:1. 废弃的接口 rtc_tm_to_time 2. 替换废弃接口的新接口 rtc_tm_sub
阅读全文
摘要:答: 使用git stash -p进行交互式操作,y表示压栈,n表示不压栈
阅读全文
摘要:答: 通过设备树中的aliases节点来指定即可; 如某rtc设备的节点名为rtc@68,那么想让系统为该设备生成指定的设备文件/dev/rtc1,那么就在设备树的根节点中增加aliases节点,示例如下: / { ... aliases { rtc1 = rtc@68; ... }; ... };
阅读全文
摘要:答:在bootargs中添加参数no_console_suspend即可进行调试
阅读全文
摘要:1. 生成一个补丁 git format-patch --subject-prefix=v2 -1 那么生成的patch文件就会有如下类似的信息: Subject: [v2] your description about the patch 2. 那么若是同时生成两个补丁呢? git format-
阅读全文
摘要:1. 下载 wget http://patchwork.ozlabs.org/series/111111/mbox 2. 打补丁 git am mbox
阅读全文
摘要:答: echo $level > /proc/sys/kernel/printk 如: echo 8 4 1 7 > /proc/sys/kernel/printk
阅读全文
摘要:答: 使用ldd查看程序是否缺少库,如果缺少库,那么就从交叉编译工具链中获取并复制到arm的根文件系统中
阅读全文
摘要:1. 获取源码 wget https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.34/util-linux-2.34.tar.xz 2. 解压 tar xvf util-linux-2.34.tar.gz cd util-linu
阅读全文
摘要:1. 获取源码 wget https://mirrors.edge.kernel.org/pub/software/utils/i2c-tools/i2c-tools-4.1.tar.xz 2. 解压源码 tar xvf i2c-tools-4.1.tar.gz cd i2c-tools-4.1 3
阅读全文