編譯一個能夠安裝的OpenWrt
固件鏡像文件(大約8MB
大小的),有以下需求:html
OpenWrt
編譯系統大約須要200MB
的空間。feeds
的OpenWrt
編譯系統大約須要300MB
的空間。feeds
中的軟件包大約須要2.1GB
的空間用於存放下載來的源代碼。OpenWrt
並生成固件文件須要大約3-4 GB
的空間。OpenWrt
須要大約1-4 GB
的內存。安裝須要的工具:linux
$ sudo apt-get update $ sudo apt-get install git-core build-essential libssl-dev libncurses5-dev unzip subversion mercurial
從官方源下載15.05
分支(Chaos Calmer
):git
$ git clone git://git.openwrt.org/15.05/openwrt.git
下載並安裝全部可用的feeds
:框架
$ cd openwrt $ ./scripts/feeds update -a $ ./scripts/feeds install -a
在編譯OpenWrt
系統以前,首先要對它進行配置,讓它可以支持咱們的開發板。OpenWrt
系統也是一個Linux
系統,經過make menuconfig
來進行配置,最後運行make -j8 V=99
便可。工具
編譯完成後,在bin/ramips/
目錄下會生成以下文件:post
$ ls bin/ramips/ md5sums openwrt-ramips-mt7628-uImage.bin OpenWrt-ImageBuilder-ramips-mt7628.Linux-x86_64.tar.bz2 openwrt-ramips-mt7628-uImage-initramfs.bin openwrt-ramips-mt7628-LinkIt7688-initramfs-uImage.bin openwrt-ramips-mt7628-vmlinux.bin openwrt-ramips-mt7628-LinkIt7688-squashfs-sysupgrade.bin openwrt-ramips-mt7628-vmlinux.elf openwrt-ramips-mt7628-mt7628-initramfs-uImage.bin openwrt-ramips-mt7628-vmlinux-initramfs.bin openwrt-ramips-mt7628-mt7628-squashfs-sysupgrade.bin openwrt-ramips-mt7628-vmlinux-initramfs.elf openwrt-ramips-mt7628-root.jffs2-128k OpenWrt-SDK-ramips-mt7628_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2 openwrt-ramips-mt7628-root.jffs2-64k packages openwrt-ramips-mt7628-root.squashfs sha256sums
作路由器應用開發並不須要整個源碼環境,只要製做一個能夠編譯生成ipk
的特定的SDK
環境就好,恰巧openwrt
配置提供了這樣的選項功能。若要給應用開發人員提供SDK
開發環境,只要在make menuconfig
的時候選上:ui
[*] Build the OpenWrt SDK
make V=99
編譯以後,在bin/ramips/
目錄下生成OpenWrt-SDK-ramips-mt7628_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2
,解壓後目錄和源碼目錄同樣。es5
uboot.bin
爲了防止uboot.bin
被破壞而沒法恢復的問題,能夠把uboot.bin
從Flash
中導出來。能夠採用以下的方法:.net
root@OpenWrt:/tmp# cat /proc/mtd dev: size erasesize name mtd0: 00030000 00010000 "u-boot" mtd1: 00010000 00010000 "u-boot-env" mtd2: 00010000 00010000 "factory" mtd3: 007b0000 00010000 "firmware" mtd4: 006bfd4b 00010000 "rootfs" mtd5: 00300000 00010000 "rootfs_data" root@OpenWrt:/tmp# dd if=/dev/mtdblock0 of=/tmp/uboot.bin 384+0 records in 384+0 records out root@OpenWrt:/tmp# ln -s /tmp /www/tmp root@OpenWrt:/tmp# ls -l -rw-r--r-- 1 root root 196608 Jul 10 11:57 uboot.bin root@OpenWrt:/tmp# md5sum uboot.bin db70ae5ae66f6efbb7f334e71b95f1d0 uboot.bin
接着就能夠利用scp
命令上傳出uboot.bin
了。code
Opkg
Opkg
是一個輕量快速的套件管理系統,目前已成爲Opensource
界嵌入式系統標準。經常使用於路由、交換機等嵌入式設備中,用來管理軟件包的安裝升級與下載。
經常使用命令:
opkg update 更新能夠獲取的軟件包列表 opkg upgrade 對已經安裝的軟件包升級 opkg list 獲取軟件列表 opkg install 安裝指定的軟件包 opkg remove 卸載已經安裝的指定的軟件包
OpenWrt編譯系統 – 安裝
編譯openwrt下載到MT7688開發板
csdn openwrt資料集合
建立軟件包
用OpenWRT編譯軟件安裝包
openwrt: Makefile 框架分析
Openwrt 交叉編譯(Crosscompile)及使用SDK生成ipk安裝包