
linux driver
zestroly
这个作者很懒,什么都没留下…
展开
-
libconv库移植
libconv移植,交叉编译libconv移植,交叉编译下载地址:http://www.gnu.org/software/libiconv/ubuntu下载wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.15.tar.gz解压后配置,编译,安装./configure \ --host=a...转载 2018-06-21 10:03:09 · 768 阅读 · 0 评论 -
openssl交叉编译
交叉编译openssl下载地址:https://github.com/openssl/openssl我下载的版本是:wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_1-pre8.tar.gz 解压,配置(创建shell脚本方便配置)#!/bin/sh./config \ shared \ ...原创 2018-06-21 13:31:57 · 742 阅读 · 0 评论 -
libnl移植,交叉编译
libnl移植,交叉编译下载地址:http://www.infradead.org/~tgr/libnl/ubuntu下载wget http://www.infradead.org/~tgr/libnl/files/libnl-1.1.4.tar.gz解压后配置,编译,安装#!/bin/bash./configure \ --host=arm-linux-gnuea...转载 2018-06-21 13:41:31 · 3632 阅读 · 1 评论 -
wpa_supplicant 交叉编译,移植
wpa_supplicant 交叉编译,移植下载地址:http://w1.fi/wpa_supplicant/依赖:openssl,libnl库 libnl交叉编译 openssl交叉编译wget http://w1.fi/releases/wpa_supplicant-2.6.tar.gz解压,进入wpa_supplicant-2.6/wpa_supplicant 目录拷...原创 2018-06-21 17:36:49 · 1133 阅读 · 0 评论 -
linux启动过程中,去除屏幕左上角光标闪烁
注释drivers/video/console/fbcon.c 两个函数内容 static void fb_flashcursor(struct work_struct *work) static void fbcon_cursor(struct vc_data *vc, int mode)重新编译内核转载 2018-06-19 17:54:43 · 4140 阅读 · 0 评论 -
linux在内核中设置开机logo
1、获取一张16色的bmp格式的logo图片,其他格式可用:可牛影像,ps等工具转换成bmp格式2、制作ppm格式 ubuntu安装:netpbm工具 sudo apt-get install netpbm #!/bin/bashif [ "x$1" == "x" ];then echo "usage:$0 logo_file" exit 0fi...原创 2018-06-20 11:56:44 · 925 阅读 · 0 评论