2019年6月16日

git commit -F时用到的commit.log模板

摘要: 分享一下作者git commit -F时的commit.log模板: 作者将commit.log放在~/目录下 阅读全文

posted @ 2019-06-16 18:16 Alvin2012 阅读(685) 评论(0) 推荐(0) 编辑

github上需要生成密钥对:ssh key

摘要: 1.首先查看当前用户之前是否生成过密钥对:ls ~/.ssh 如果不存在该目录则之前未生成过,如果存在则删除该目录:rm -rf ~/.ssh 2.生成ssh key密钥对: ssh-keygen -t rsa -C “alvin@alvin.com” 双引号里面的为你的邮箱 3.执行上述命令后连按 阅读全文

posted @ 2019-06-16 10:57 Alvin2012 阅读(86) 评论(0) 推荐(0) 编辑

windows和linux字体库位置

摘要: windows字体库位置: C:\Windows\Fonts linux字体库位置: /usr/share/fonts 阅读全文

posted @ 2019-06-16 09:50 Alvin2012 阅读(679) 评论(0) 推荐(0) 编辑

2019年6月15日

.vimrc配置文件

摘要: 分享一下作者的.vimrc配置文件: 阅读全文

posted @ 2019-06-15 10:53 Alvin2012 阅读(114) 评论(0) 推荐(0) 编辑

2019年6月14日

iw交叉编译

摘要: iw交叉编译: mkdir __install alvin@ubuntu:~/Documents/wifi_ap/iw-5.0$ git df Makefilediff --git a/Makefile b/Makefileindex 46d3030..95c7a01 100644 a/Makefi 阅读全文

posted @ 2019-06-14 19:31 Alvin2012 阅读(256) 评论(0) 推荐(0) 编辑

libnl和libopenssl,hostapd交叉编译

摘要: 1.nl: mkdir __install ./configure CC=arm-linux-gnueabihf-gcc \ --prefix=$(pwd)/__install \ --host=arm-linux-gnueabihf \ CFLAGS=-I/usr/include make mak 阅读全文

posted @ 2019-06-14 17:55 Alvin2012 阅读(2389) 评论(0) 推荐(0) 编辑

2019年6月9日

linux中断

摘要: linux中断: 内核版本:linux-5.1.7 中断注册函数:request_irq() 位置:linux-5.1.7/include/linux/interrupt.h 内核中把这种短小的inline函数都放在了头文件中。 函数原型:static inline int __must_check 阅读全文

posted @ 2019-06-09 21:37 Alvin2012 阅读(112) 评论(0) 推荐(0) 编辑

对cmake的理解

摘要: 对cmake的理解: cmake官方文档:https://cmake.org/documentation/ 我们这里只介绍一下对cmake命令行的理解: 作者在编译中主要用到了第一条命令cmake [<options>] <path-to-source> 在build tree目录下编译source 阅读全文

posted @ 2019-06-09 21:24 Alvin2012 阅读(303) 评论(0) 推荐(0) 编辑

嵌入式系统增加文件系统分区

摘要: 最近工作中需要在arm架构的单板上增加一个fat格式的文件系统分区用于windows访问,就回顾了一下文件系统和linux分区。简单写几句: 单板的存储介质是eMMC,linux系统,采用交叉编译。增加分区就直接在fastboot传给kernel的参数中增加一个分区就好了,没什么要说的。 这里主要说 阅读全文

posted @ 2019-06-09 18:03 Alvin2012 阅读(1033) 评论(0) 推荐(0) 编辑

2019年6月8日

opencv源码交叉编译

摘要: 环境: 主机:Linux alvin-Lenovo-V310-14ISK 4.13.0-46-generic #51-Ubuntu SMP Tue Jun 12 12:36:29 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux linux下交叉编译arm平台openc 阅读全文

posted @ 2019-06-08 21:24 Alvin2012 阅读(5955) 评论(0) 推荐(0) 编辑

导航