X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=modules.update;h=9e036ab22d29e265a9cb3ce009ed0ff9c8dc6664;hb=ae03aed2a462c23e0ecc8d463c470d2f1f58b894;hp=96686299c1e89b4b9c28bab1cee2e4e4aa77183b;hpb=7acbe40c70270e3077226c9ccb90546e0d9f56bb;p=build.git diff --git a/modules.update b/modules.update index 96686299..9e036ab2 100755 --- a/modules.update +++ b/modules.update @@ -2,5 +2,16 @@ # redirect this into modules.list to get it refreshed # -# we set DISTRONAME as this cannot be correctly guessed from the build box root context -for tags in *tags.mk ; do make stage1=true PLDISTROTAGS=$tags DISTRONAME=f8 module-tools ; done | sort -u | grep -v '^build$' + +# run on several distros as we filter out duplicates anyways +# centos5 has more of our modules, but skips sfa +fcdistros="f14 f16" + +( for fcdistro in $fcdistros; do + make stage1=true PLDISTRO=planetlab PLDISTROTAGS=planetlab-k32-tags.mk DISTRONAME=${fcdistro} module-tools ; + make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-k32-tags.mk DISTRONAME=${fcdistro} module-tools ; + make stage1=true PLDISTRO=mlab PLDISTROTAGS=mlab-tags.mk DISTRONAME=${fcdistro} module-tools ; + make stage1=true PLDISTRO=lxc PLDISTROTAGS=lxc-tags.mk DISTRONAME=${fcdistro} module-tools ; + done 2>/dev/null ; + echo tests +) | sort -uf | grep -v '^build$'