LEDE 17.01 source question

All you need to do is checkout the 17.01 branch, and issue a git pull before every compile to pull down the latest changes.

All these tags are just points in time within the 17.01 branch. Forget the tags, and just follow the branch to be on the latest.

This is how I do it:

clone master:
git clone https://github.com/lede-project/source.git

then switch the to 17.01 branch and follow it:
git fetch origin
git checkout --track origin/lede-17.01

Then pull your packages and compile after your standard make menu setup.

1 Like