自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

雜貨鋪

None Rights Reserved.

  • 博客(27)
  • 资源 (10)
  • 收藏
  • 关注

原创 OpenWrt软件包的编译

由http://blog.csdn.net/zahuopuboss/article/details/18825515知道每个目录下的Makefile中都会有11个目标规则分别为SUBTARGETS:=clean download prepare compile install update refresh prereq dist distcheck configure每个软件包下的

2014-01-28 01:34:23 1106

原创 OpenWrt编译使用$(warning $(call subdir,$(curdir)))将宏subdir展开的结果打印出来

tools/Makefile、target/Makefile、package/Makefile、toolchain/Makefile这4个文件最后一行使用$(eval $(call subdir,$(curdir)))展开生成各个子目录的编译规则以tools/Makefile中展开宏subdir为例使用warning打印展开的结果$(warning $(ca

2014-01-27 23:46:08 2554

原创 OpenWrt编译目标world的依赖

在顶层的Makefile第2个分支中,目标world的依赖prepare: .config $(tools/stamp-install) $(toolchain/stamp-install)world: prepare $(target/stamp-compile) $(package/stamp-cleanup) $(package/stamp-compile) $(package/st

2014-01-27 23:26:00 3497

原创 OpenWrt编译时使用make的-p参数打印数据库信息

# GNU Make 3.81 # Copyright (C) 2006  Free Software Foundation, Inc. # This is free software; see the source for copying conditions. # There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR

2014-01-27 22:59:32 5983

原创 OpenWrt目录的编译

顶层Makefile的第1个分支主要解决package和target的信息收集.config配置文件的生成在顶层的Makefile完成第1个分支后执行include/toplevel.mk中目标%::的命令@+$(SUBMAKE) -r $@重新回到顶层Makefile的第2个分支中的world目标第2个分支主要完成源码下载和编译工作从第2个分支中包含的

2014-01-27 10:41:31 1209

转载 Makefile的特殊目标

原文地址:http://blog.csdn.net/lhq9220/article/details/6552164在Makefile中,有一些名字,当它们作为规则的目标时,具有特殊含义。它们是一些特殊的目标,GNUmake所支持的特殊的目标有:.PHONY:目标“.PHONY”的所有的依赖被作为伪目标。伪目标时这样一个目标:当使用make命令行指定此目标时,这个目标所在

2014-01-23 18:11:36 770

转载 openwrt顶层Makefile分析

原文地址:http://blog.csdn.net/lj627889343/article/details/7997463openwrt这里主要介绍openwrt的主Makefile,并未对各个目录下的Makefile和相关文件进行介绍。 在Makefile里是两个主要的分支,由if语句根据OPENWRT_BUILD的值进行不同的处理。第一个部分主要是执行编译前的准

2014-01-22 21:07:39 778

原创 openwrt的feeds

openwrt官方wiki的介绍http://wiki.openwrt.org/doc/devel/feeds中文介绍https://dev.openwrt.org.cn/wiki/installfeeds这里介绍package的描述符格式http://downloads.openwrt.org/kamikaze/docs/openwrt.html#x1-4

2014-01-20 22:00:06 3438

转载 Linux SDK之uClinux、Broadcom、Atheros、Realtek、Ralink

原文地址:http://blog.csdn.net/laifu_ma/article/details/14103333接触的Linux SDK越来越多,整理整理,分享分享,不求系统全面,对您有帮助便足矣文中大部分是与AP/Router SoC解决方案(单芯片WIFI 路由器解决方案)相关的Linux SDKSDK(Software Development Kit

2014-01-19 00:33:38 1715 2

原创 rtl819x-SDK-v3.2.3中关于链接器LD变量设置的问题

从网上下载rtl819x-SDK-v3.2.3.tar.gzhttp://sourceforge.net/projects/rtl819x/解压后在目录rtl819x-SDK-v3.2.3/rtl819x/users下的Makefile中110行开始CC = $(CROSS_COMPILE)gccCXX = $(CROSS_COMPILE)g++LD = $

2014-01-19 00:30:53 2492

原创 使用find,xargs,sha1sum,sort,uniq查找重复文件

先查找所有文件使用参数-print0和-0解决含有空格的文件名称使用sha1sum计算哈希值将所有结果导入文件中find . -type f -print0 | xargs -0 sha1sum >> sha1sum.txt按照哈希值排序列出所有相同的项cat sha1sum.txt | sort | uniq -w40 --all-repeated=s

2014-01-16 23:29:34 934

转载 Unix/Linux — find & xargs — Spaces in filenames

原文地址:https://notfaq.wordpress.com/2006/07/30/unix-filenames-with-spaces-in-find-xargs/Spaces in filenames can be a problem when using find | xargs combination.To solve this, use:find .

2014-01-16 23:17:19 889

转载 openwrt出现md5sum mismatch错误

原文地址:http://catinmay.com/openwrt%E5%87%BA%E7%8E%B0md5sum-mismatch%E9%94%99%E8%AF%AF刚刚帮人搞路由器一运行安装命令就会出现此错误,错误提示如下root@DreamBox:~# opkg install kmod-i2c-coreInstalling kmod-i2c-core (2.6

2014-01-16 16:18:58 6461

转载 Radclient的文档

原文地址:http://wiki.freeradius.org/config/RadclientRadclientradclient is a radius client program included as part of FreeRADIUS. It can send arbitrary RADIUS packets to a RADIUS serve

2014-01-15 15:08:36 1122

原创 MJPG-Streamer的帮助信息

# mjpg_streamer --help-----------------------------------------------------------------------Usage: mjpg_streamer  -i | --input " [parameters]"  -o | --output " [parameters]" [-h | --help ].

2014-01-14 10:33:07 1244

原创 Makefile中的双冒号规则

https://www.gnu.org/software/make/manual/make.html#Double_002dColon4.13 Double-Colon RulesDouble-colon rules are explicit rules written with ‘::’instead of ‘:’ after the target names. Th

2014-01-08 16:10:37 1777

原创 Makefile中的加号修饰符

+加号修饰符,要求make执行命令,即使使用了-n选项。make --help帮助中-n选项的含义-n, --just-print, --dry-run, --recon                              Don't actually run any commands; just print them.使用加号修饰符让命令始终执行。

2014-01-08 14:54:51 1731

转载 Remove ^M characters at end of lines in vi

原文地址:http://www.tech-recipes.com/rx/150/remove-m-characters-at-end-of-lines-in-vi/UNIX treats the end of line differently than other operating systems. Sometimes when editing files in both

2014-01-08 10:56:10 888

转载 Lua中用Split函数分割字符串

原文地址:http://blog.csdn.net/chencong112/article/details/6736019[python] view plaincopyfunction Split(szFullString, szSeparator)  local nFindStartIndex = 1  local nSplitIndex = 1  l

2014-01-08 09:50:09 8427

转载 Unbrick wr703n wifi router

原文地址:http://forums.openpilot.org/blog/52/entry-92-unbrick-wr703n-wifi-router/Hello,if like myself you push the thing a little too far, you should find this usefull If nothing is respondi

2014-01-07 16:59:58 1684

转载 WR703N修砖记 --- 刷机有风险, 折腾需谨慎

原文地址:http://blog.chinaunix.net/uid-27194309-id-3405021.htmlhttp://wiki.openwrt.org/toh/tp-link/tl-wr703nHardware summary  ICInfoDatasheetProcessor

2014-01-07 16:58:34 3181

转载 Javascript Array和String的互转换

原文地址:http://www.cnblogs.com/daohuen/archive/2013/03/13/2958023.html  Array类可以如下定义:     var aValues = new Array();      如果预先知道数组的长度,可以用参数传递长度     var aValues = new Array(20);      ---

2014-01-03 18:18:30 599

转载 sqlite3:自增主键、联合主键

原文地址:http://blog.163.com/yi_xiaoluo@126/blog/static/720904392011913105694151、sqlite支持建立自增主键,sql语句如下: CREATE TABLE w_user( id integer primary key autoincrement, userename varchar(32), 

2014-01-03 09:10:57 2652

转载 Luci实现框架

原文地址:http://www.cnblogs.com/zmkeil/archive/2013/05/14/3078774.html1.总述     上一篇总结了uhttpd的工作方式,openwrt中利用它作为web服务器,实现客户端web页面配置功能。对于request处理方式,采用的是cgi,而所用的cgi程序就是luci,工作框架如下图所示:    Cl

2014-01-02 13:51:11 1556

转载 uhttpd的实现框架

原文地址:http://www.cnblogs.com/zmkeil/archive/2013/05/14/3078766.html    uhttpd是一个简单的web服务器程序,以前没怎么接触过,所以这里主要是对web服务器设计的一些学习总结。Openwrt系统中,真正用到的(需要了解的),其实不多,主要就是cgi的处理,包括与cgi程序的信息交互等,最后一节详细描述一下。

2014-01-02 13:49:50 3110

转载 sqlite3常用命令&语法

原文地址:http://blog.csdn.net/linchunhua/article/details/7184439sqlite数据库只用一个文件就ok,小巧方便,所以是一个非常不错的嵌入式数据库,SQLite大量的被用于手机,PDA,MP3播放器以及机顶盒设备。    Mozilla Firefox使用SQLite作为数据库。    Mac计算机中的包含了多份SQLi

2014-01-02 11:25:35 782

转载 sqlite3处理写并发

原文地址:http://blog.csdn.net/zhaodezhong/article/details/7359738sqlite3数据库是一个数据库一个文件,所以当多进程访问操作同一数据库时,即与操作同一文件一样,文件锁问题。对同个数据库进行多进程同时读是允许的,但多进程同时写是不允许的,如果一个进程已经正在写,其他进程就会写失败。sqlite3返回信息就是"Databa

2014-01-02 11:10:49 1035

802.11无线网络权威指南

802.11无线网络权威指南(第二版全_非扫描)

2014-07-02

Linux Kernel Networking

Linux Kernel Networking - Implementation and Theory

2014-07-02

802.11-2012

802.11-2012  Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications

2014-07-02

802.1X-2001.pdf

802.1X-2001.pdf 英文版

2013-08-14

flex与bison中文版

flex与bison中文版 flex bison

2013-07-21

802.1X-2010

802.1X-2010.pdf

2013-06-20

802.1X-2004

802.1X-2004.pdf

2013-06-20

802.11i-2004

IEEE Std 802.11i-2004.pdf

2013-05-28

BoxCryptor-manual-Windows-1.3.pdf

BoxCryptor-manual-Windows-1.3.pdf

2013-03-05

BoxCryptor_v1.5.410.149_Setup.exe

BoxCryptor_v1.5.410.149_Setup.exe

2013-03-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除