payloads/filo: Update branch name from master to main
It seems like the default branch for FILO was renamed from 'master' to 'main'. TEST: FILO builds correctly when selecting 'HEAD' for the FILO version option. Change-Id: I6c355d757987551e850f9d24f6bfb14167cb8046 Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/76101 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
e33d253793
commit
55d941033a
|
@ -9,7 +9,7 @@ config FILO_STABLE
|
||||||
help
|
help
|
||||||
Tested FILO version
|
Tested FILO version
|
||||||
|
|
||||||
config FILO_MASTER
|
config FILO_HEAD
|
||||||
bool "HEAD"
|
bool "HEAD"
|
||||||
help
|
help
|
||||||
Newest FILO version
|
Newest FILO version
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
TAG-$(CONFIG_FILO_MASTER)=origin/master
|
TAG-$(CONFIG_FILO_HEAD)=origin/main
|
||||||
NAME-$(CONFIG_FILO_MASTER)=MASTER
|
NAME-$(CONFIG_FILO_HEAD)=MAIN
|
||||||
TAG-$(CONFIG_FILO_STABLE)=c2fa1ea6125c63e84cdf7779c37d76da8c5bc412
|
TAG-$(CONFIG_FILO_STABLE)=c2fa1ea6125c63e84cdf7779c37d76da8c5bc412
|
||||||
NAME-$(CONFIG_FILO_STABLE)=STABLE
|
NAME-$(CONFIG_FILO_STABLE)=STABLE
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ checkout:
|
||||||
test -d filo || \
|
test -d filo || \
|
||||||
git clone $(project_git_repo) $(project_dir)
|
git clone $(project_git_repo) $(project_dir)
|
||||||
cd filo && \
|
cd filo && \
|
||||||
git checkout master && \
|
git checkout main && \
|
||||||
git remote update && \
|
git remote update && \
|
||||||
test -n $(TAG-y) && \
|
test -n $(TAG-y) && \
|
||||||
git branch -f $(NAME-y) $(TAG-y) && \
|
git branch -f $(NAME-y) $(TAG-y) && \
|
||||||
|
|
Loading…
Reference in New Issue