Hi all,
I'd like to build a specific revision of trunk and I'm not sure how to handle the feeds...
Here's what I'm doing so far:
git clone git://git.openwrt.org/openwrt.git
git log --grep=40698
Then I get:
commit 1fd51fcb9970994c57faa933453bc426dcbc3007
Author: nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Mon May 5 18:44:46 2014 +0000
x86_64: enable high res timers by default
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40698 3c298f89-4303-0410-b956-a3cf2f4a3e73
Out of which I use the commit Id to perform the following:
git checkout 1fd51fcb9970994c57faa933453bc426dcbc3007
That seems to be fine as far as the main repository is concerned.
Now I'm unsure how I can proceed for the feeds since they also moved to GIT (no "src-svn" anymore in the feeds.conf) so I cannot use the "@40698" in the URL to get what I need.
I know a lot of you out there must be doing something similar and I would appreciate if you can share your procedure with me.
Thank you!