1、使路由器第一次啟動後預設開啟wifi
修改檔案openwrt/trunk/package/mac80211/files/lib/wifi/mac80211.sh的最後部分
# remove this line to enable wifi:
option disabled 1
2、如何單獨編譯核心模組安裝包
make package/kernel/ v=s
ps:openwrt的kernel modules 配置檔案都在這
3、新增u盤/行動硬碟支援
新增usb掛載
base system —> <*>block-mount
新增硬碟格式支援()
kernel modules —> filesystems —> <*> kmod-fs-ext4
(行動硬碟ext4格式選擇)
kernel modules —> filesystems —> <*> kmod-fs-vfat
(fat16 / fat32 格式 選擇)
kernel modules —> filesystems —> <*> kmod-fs-ntfs
(ntfs 格式 選擇)
新增utf8編碼,cp437編碼,iso8859-1編碼
kernel modules —> native language support —> <*> kmod-nls-cp437
kernel modules —> native language support —> <*> kmod-nls-iso8859-1
kernel modules —> native language support —> <*> kmod-nls-utf8
新增scsi支援
kernel modules —> block devices —> <*>kmod-scsi-core
新增usb相關支援
kernel modules —> usb support —> <*> kmod-usb-core.
kernel modules —> usb support —> <*> kmod-usb-ohci.
kernel modules —> usb support —> <*> kmod-usb-storage.
kernel modules —> usb support —> <*> kmod-usb-storage-extras.
kernel modules —> usb support —> <*> kmod-usb2.
新增自動掛載工具
utilities —> filesystem —> <*> badblocks
4、openwrt取消strip的方法
make package/foo/ v=99 strip=/bin/true
也就是說如果預設使用strip破壞了你的程式、庫,可以使用strip=/bin/true來取消strip操作,直接在makefile中定義也是可以的
5、uboot移植編譯
6、用openwrt的交叉編譯器編譯外部程式檔案,遇到如下錯誤:
mips-openwrt-linux-gcc: warning: environment variable 'staging_dir' not defined
解決辦法是在命令列輸入:
export staging_dir=(你的openwrt目錄的絕對路徑)/staging_dir
7、4g lte的移植
大致步驟 移植4g網絡卡,改寫網路配置檔案,改寫4g撥號指令碼,配置wifi和wifi的dhcp。
涉及檔案:
核心部分 driver/usb/serial/option.c 加pid,vid
檔案系統部分:
/etc/config/network 加入wan介面配置並配置為4g模式;加入wifi介面,並配置為靜態位址模式以便能自動啟。
/etc/config/wireless 將wifi-iface的network欄位與
/etc/config/network中的wifi介面匹配相同
/etc/config/firewall 修改防火牆規則,使各個介面都可以通訊。
/etc/config/dhcp 新增wifi介面的dhcp功能
/etc/chatscripts/3g.ch 撥號指令碼
以上所有檔案內容在這個網頁:
a、4g網絡卡移植,參照以下,
把網絡卡的pid vid寫進核心中,否則可能不能轉換modem模式。
核心可能需要新增usb儲存支援和塊裝置的scsi支援。
&rpid=26287429&ordertype=0&page=1#pid26287429
移植4g的apn是 cmnet ,需要寫進
/etc/config/network
,/etc/chatscripts/3g.chat
b、配置wifi及其dhcp
8、svn版本控制
svn 回滾 或 svn 指定版本
需要的版本是 28007
操作:1. svn 最新的** : svn co svn: -r 28007
2. 回滾或到指定版本:svn up -r 28007
指定luci版本
cd trunk/feeds/luci
svn up -r r7612
9、openwrt 無線adhoc模式,啟動時無線ip和mac位址配置失敗
無線國家選擇cn 中國,無線通道
選擇自動(不太確定,有待於研究)
10、新增復位鍵支援
utilities ---> <*> restorefactory
新增一鍵開關無線
utilities ---> <*> wifitoggle
container of 的的的原理
另外一篇,同樣精彩,揭開linux核心中container of的神秘面紗 華清遠見嵌入式學院講師。在linux 核心中有乙個大名鼎鼎的巨集container of 這個巨集是用來幹嘛的呢?我們先來看看它在核心中是怎樣定義的。呵呵,乍一看不知道是什麼東東。我們先來分析一下container of p...
存在的就是合理的,發生的即是必然的。
筆者有時候會想,什麼是對,什麼是錯?對於追求某一件事情之前首先會考慮,為什麼我要做這件事情。所以經過自我分析和生活周邊環境的總結。我認為,對於乙個人來,這是在站在個體的角度上說。什麼是對的?就是你自己覺得是對的,它就是對的。不過這個只是你自己的想法。主觀上的正確,不代表客觀上也受到了別人的認可。就拿...
Apache的rewrite的重寫相關的引數
apache mod rewrite規則重寫的標誌一覽 使用mod rewrite時常用的伺服器變數 rewriterule規則表示式的說明 匹配任何單字元 chars 匹配字串 chars chars 不匹配字串 chars text1 text2 可選擇的字串 text1或text2 匹配0到1...