diff options
author | Nico Huber <nico.h@gmx.de> | 2022-08-24 00:08:04 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-09-27 13:50:03 +0000 |
commit | bbaa5e5056f2ba7cf3c3ce1491f8ca70a91d6545 (patch) | |
tree | f4e07dfe8a1bdc92087bd051e0514ef060db65be /util | |
parent | d3b112032eccb5680dc2e61658adbf0d3aeabff2 (diff) | |
download | flashrom-bbaa5e5056f2ba7cf3c3ce1491f8ca70a91d6545.tar.gz flashrom-bbaa5e5056f2ba7cf3c3ce1491f8ca70a91d6545.tar.bz2 flashrom-bbaa5e5056f2ba7cf3c3ce1491f8ca70a91d6545.zip |
manibuilder/fedora: Add newer image tags
Also order tags by their architecture for readability.
Change-Id: I68ad93ed26ae11c05b93b4d097478e471f65abc4
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66997
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'util')
-rw-r--r-- | util/manibuilder/Makefile.targets | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/util/manibuilder/Makefile.targets b/util/manibuilder/Makefile.targets index d24c3c02a..d4ad1b626 100644 --- a/util/manibuilder/Makefile.targets +++ b/util/manibuilder/Makefile.targets @@ -7,12 +7,16 @@ MULTIARCH_TAGS := \ centos\:7.6-armhfp-clean centos\:7.6-amd64-clean \ centos\:7.3-aarch64-clean centos\:7.3-amd64-clean \ centos\:7.2-amd64-clean \ - $(foreach a,x86_64 s390x aarch64, fedora\:30-$(a)) \ - $(foreach a,x86_64 s390x ppc64le aarch64, fedora\:29-$(a)) \ - fedora\:28-armhfp \ - $(foreach a,x86_64 ppc64le aarch64, \ - $(foreach v,25 24, \ + $(foreach a,x86_64 aarch64, \ + $(foreach v,34 33 32 31 30 29 25 24, \ + fedora\:$(v)-$(a))) \ + $(foreach a,ppc64le, \ + $(foreach v,34 33 29 25 24, \ fedora\:$(v)-$(a))) \ + $(foreach a,s390x, \ + $(foreach v,34 33 32 31 30 29, \ + fedora\:$(v)-$(a))) \ + fedora\:28-armhfp \ $(foreach a,ppc64el arm64 armhf mips mipsel amd64 i386, \ $(foreach v,sid buster stretch, \ debian-debootstrap\:$(a)-$(v))) \ |