How to include specific release of FRR in OpenWrt

The build frr for openwrt documentation (http://docs.frrouting.org/projects/dev-guide/en/latest/building-frr-for-openwrt.html) provides following steps to include FRR in the openwrt. But it checksout the latest frr package. Instead I want to checkout specific release which is stable. How to do that ?

git clone https://github.com/openwrt/openwrt.git
cd openwrtte -a
./scripts/feeds install -a
cd feeds/routing
git fetch origin pull/319/head
git read-tree --prefix=frr/ -u FETCH_HEAD:frr
./scripts/feeds upda
cd ../../package/feeds/routing/
ln -sv ../../../feeds/routing/frr .
cd ../../..
1 Like

https://git-scm.com/docs/git-checkout in the appropriate feed directory to take the whole feeds tree back to that point in time, or checkout/edit the package Makefile for the version you want on your own branch.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.