Would anyone happen to know how to build from 18.06.1 or from the stable branch in general? All the instructions I find seem to be for building from the development branch.
Same instructions, just check out the git branch/tag that you want to build and re-sync the feeds.
For example, to build from the v18.06.1
tag, you could get the proper sources with
$ git fetch # Make sure your local git repo has the latest commits, branches, and tags
$ git checkout -b v18.06.1
$ ./scripts/feeds update -a
$ ./scripts/feeds install -a
1 Like
Excellent, thanks.
git clone https://git.openwrt.org/openwrt/openwrt.git/
cd openwrt
git branch
git branch -v
git branch -r
git checkout v18.06.1
./scripts/feeds update -a && ./scripts/feeds install -a
make menuconfig
make V=s
1 Like
Thanks @xhaka.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.