Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.16 KB

Mua-OpenWrt.md

File metadata and controls

49 lines (34 loc) · 1.16 KB

Mua OpenWrt

Project List

Setup

openwrt

$ git clone [email protected]:robbie-cao/mua-openwrt.git openwrt

If you have a git clone of openwrt from https://github.com/openwrt/openwrt.git already, use the following command to swtich git remote track.

This will quickly switch git remote repository and save time of cloning a fresh copy.

$ cd openwrt (-> assume your openwrt path)
$ git remote -v (-> to check your remote git repository)
$ git remote set-url origin [email protected]:robbie-cao/mua-openwrt.git (-> switch remote repository)
$ git fetch origin --prune (-> sync to new remote repository)
$ git checkout -b board/synnex --track remotes/origin/board/synnex (-> checkout the developing branch for current board)

uboot

$ git clone [email protected]:robbie-cao/mua-uboot-7688.git uboot

Build

$ cd openwrt
$ ./scripts/feeds update -a
$ ./scripts/feeds install -a

$ cp -f config.default .config
-or-
$ make menuconfig

$ make V=s