forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feeds: use git-src-full to allow Git versioning
Both $(AUTORELEASE) and $(PKG_SRC_VERSION) (from luci.git) use the Git log to determine releases and package timestamps. Feeds are shallow cloned by default, resulting in an incomplete Git log and therefore different local package versions than offered upstream. This commits sets the default feeds to use `src-git-full` to solve that. Add fixes from "2b1d92f: scripts/feeds: silence git warning by selecting pull style" to `src-git-full` Signed-off-by: Paul Spooren <[email protected]>
- Loading branch information
1 parent
cac4857
commit 0bae9cf
Showing
2 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
src-git packages https://github.com/coolsnowwolf/packages | ||
src-git luci https://github.com/coolsnowwolf/luci | ||
src-git routing https://git.openwrt.org/feed/routing.git | ||
src-git telephony https://git.openwrt.org/feed/telephony.git | ||
#src-git video https://github.com/openwrt/video.git | ||
#src-git targets https://github.com/openwrt/targets.git | ||
#src-git oldpackages http://git.openwrt.org/packages.git | ||
#src-link custom /usr/src/openwrt/custom-feed | ||
src-git-full packages https://github.com/coolsnowwolf/packages | ||
src-git-full luci https://github.com/coolsnowwolf/luci | ||
src-git-full routing https://git.openwrt.org/feed/routing.git | ||
src-git-full telephony https://git.openwrt.org/feed/telephony.git | ||
#src-git-full video https://github.com/openwrt/video.git | ||
#src-git-full targets https://github.com/openwrt/targets.git | ||
#src-git-full oldpackages http://git.openwrt.org/packages.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters