X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=modules.update;h=c8a3dda806b1cc4595c4d0d0c2931b0c1096ed8e;hb=59edcbd74c27c43b04282120e2c41f8faa279628;hp=fb8caa98f8cb59304e4cdad67ac25c8283f7ec7d;hpb=238af597799d93aef242635ccfd3798741a7377d;p=build.git diff --git a/modules.update b/modules.update index fb8caa98..c8a3dda8 100755 --- a/modules.update +++ b/modules.update @@ -2,8 +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 distro in onelab planetlab ; do - tags=${distro}-tags.mk - make stage1=true PLDISTRO=${distro} PLDISTROTAGS=${tags} DISTRONAME=centos5 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-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$'