上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 42 下一页
摘要: openwrt 下无线接口的配置文件位于 /etc/config/wirless 中。 启动 /sbin/wifi 脚本后,生效过程如下: (1)通过 uci2dat 工具生成所需要的 .dat文件 (例如: mt7603e.dat ) 一般存放在 /etc/wireless/mt7603e 目录下 阅读全文
posted @ 2017-03-21 16:55 hbg-rohens 阅读(1941) 评论(0) 推荐(0) 编辑
摘要: 在加载驱动模块时报错: “ Unknown symbol CFG80211_SupBandReInit (err 0)” 查看了内核代码以及加载上的symbol(命令为 cat /proc/kallsyms, 未找到对应值),依旧没有解决问题。 最后试探性查看编译时所需的Makefile,发现是因为 阅读全文
posted @ 2017-03-16 10:09 hbg-rohens 阅读(9542) 评论(0) 推荐(0) 编辑
摘要: 截取自《跟我一起写Makefile》 (1) $(subst <from>, <to>, <text>) 名称: 字符串替换函数 subst 功能: 把字符串<text>中的<from>字符串替换成<to> 返回: 被替换后的字符串 eg: $(subst ee, EE, feet on the s 阅读全文
posted @ 2017-03-11 16:38 hbg-rohens 阅读(12983) 评论(0) 推荐(0) 编辑
摘要: 今天在看内核中无线的实现时,发现一个调用 subsys_initcall(cfg80211_init);搜索一些资料: subsys_initcall 的定义在 include/linux/init.h 中,定义如下: #define core_initcall(fn) __define_initc 阅读全文
posted @ 2017-03-09 10:01 hbg-rohens 阅读(805) 评论(0) 推荐(0) 编辑
摘要: client模式下,响应的接口wlan0 加入桥接时出现如下错误: root@root:~# brctl addif br-lan wlan0brctl: bridge br-lan: Operation not supported。 查看相应busybox代码(brctl.c),函数为 brctl 阅读全文
posted @ 2017-03-07 15:55 hbg-rohens 阅读(3383) 评论(0) 推荐(0) 编辑
摘要: 超级wifi (super wi-fi)是相对于现有的wifi提出的改进版,执行响应的 802.11af标准。 802.11af 标准是2014年2月提出的,它的主要特点是"建议在电视频率之间使用较低的频率的白色空间",频段主要是指30-450MHZ。超级wifi使用OFDM物理层,占用空间带宽为6 阅读全文
posted @ 2017-03-02 17:07 hbg-rohens 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: 理论上的 中继(repeater)模式, 只有连接的最后一个才会有信号发出,中间的连接节点是没有信号发出的。 AP+WDS模式:就是每一个路由都有信号发出,可以进行信号的全方位覆盖。 阅读全文
posted @ 2017-02-28 16:41 hbg-rohens 阅读(4484) 评论(0) 推荐(0) 编辑
摘要: linux下利用route命令查看当前路由信息时,会打印如下信息: root@root:/# route Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface192.168.2.0 * 255.25 阅读全文
posted @ 2017-02-23 08:55 hbg-rohens 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 格式:: your comment here 格式:# your comment here 写代码注释(单行注释)。 例如: 格式:: 'comment line1 comment line2 more comments' 写多行注释。 格式:: >file 格式:>file 清空文件file的内容 阅读全文
posted @ 2017-02-20 14:16 hbg-rohens 阅读(804) 评论(0) 推荐(0) 编辑
摘要: 在openwrt的makefile中经常能看见这样的描述: define KernelPackage/mt7602e CATEGORY:=MTK Properties TITLE:=MTK MT7602e wifi AP driver FILES:=$(PKG_BUILD_DIR)/build/mt 阅读全文
posted @ 2017-02-14 17:07 hbg-rohens 阅读(916) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 42 下一页