默认情况下make kernel.img编译出来的内核在/proc/version中显示的内容是: Linux version 3.0.36+ (xxx@yyyy) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #5 SMP PREEMPT Fri Jan 16 10:49:29 CST 2015 xxx是你的用户名,yyy是你的主机名称,这些名称有时候是无意义的,或者不是你想要的.如果你想留下你的大名,如EMAIL地址:zhan…
我不知道你在笔记本使用 Linux 在内核编译无线wifi 不能用.我的书"关联 Y450"一个足够的旧书,随着无线网卡: $ lspci | grep Wireless 06:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection 眼下使用的系统为 Linux Mint 17 Qiana (Cinnamon桌面版的.毕竟cinnamon是基于Gnome3…
在学习恩智浦IMX6D开发板时,编译内核出现 drivers/mfd/mxc-hdmi-core.c::: fatal error: mach/clock.h: No such file or directory compilation terminated. make[]: *** [drivers/mfd/mxc-hdmi-core.o] 错误 make[]: *** [drivers/mfd] 错误 make: *** [drivers] 错误 先使用make clean试一下,不行还会出…
今天编译内核时候遇到了__bad_udelay错误,然后编不过去了,仔细一看发现是udelay函数的参数太大,内核不允许延时这么多.于是换成了mdelay函数,以毫秒为单位延时,问题解决.…
依次执行如下命令 #su root 输入root用户密码 #cd #vim .bashrc 到达最底行,确保环境变量如下图所示 保存退出后,执行如下指令 #source .bashrc 重启Terminal终端(必须),再次进入内核路径进行编译,即可通过.…
http://www.deyisupport.com/question_answer/dsp_arm/sitara_arm/f/25/t/71477.aspx 在上面链接中,发现时缺少了 lzop 工具包 进入去ubuntu12.04 安装: apt-get install lzop 验证: lzop -V 详细的安装 lzop 工具安装和验证,参看下面文档 http://blog.csdn.net/yyp872/article/details/21513127…
scripts/kconfig/conf --silentoldconfig Kconfig * * Restart config... * * * Enable the block layer * Enable the block layer (BLOCK) [Y/?] y Support : recipe for target 'silentoldconfig' failed ]: *** [silentoldconfig] Interrupt Makefile:: recipe for t…
Code maturity level options代码成熟度选项 Prompt for development and/or incomplete code/drivers 显示尚在开发中或尚未完成的代码与驱动.除非你是测试人员或者开发者,否则请勿选择 General setup常规设置 Local version - append to kernel release 在内核版本后面加上自定义的版本字符串(小于64字符),可以用"uname -a"命令看到 Automaticall…
在 linux 编译内核时 make menuconfig 报了下面的错误. *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuconfig' requires the ncurses libraries. *** Install ncurses (ncurses-devel) and try again. 这是因为系统中缺少 ncurses-devel,安装一下就可以…
在前面的两篇文章中我们主要讲解了Linux防火墙iptables的原理及配置规则,想博友们也都知道iptables防火墙是工作在网络层,针对TCP/IP数据包实施过滤和限制,属于典型的包过滤防火墙.以基于网络层的数据包过滤机制为主,同时提供少量的传输层.数据链路层的过滤功能.难以判断数据包对应于何种应用程序(如:QQ.迅雷等) 安装netfilter-layer7补丁包的作用是为Linux内核.iptables添加相应的补丁文件,重新编译安装后提供基于应用层(第7层)的扩展功能.通过独立的l7-…