X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=modules.update;h=f099523f6bc88a2b5f0fa29e9b5b17f87c454956;hb=2c5a8d9ecbd623aa426eef8095e26f8f4993a4db;hp=4f4435649e0d32d87544d2bc2b3c0d9cb0cada01;hpb=cb23cf4fbc5bb4def4b921c11433f01f01304215;p=build.git diff --git a/modules.update b/modules.update index 4f443564..f099523f 100755 --- a/modules.update +++ b/modules.update @@ -1,5 +1,18 @@ #!/bin/bash # redirect this into modules.list to get it refreshed +# -for tags in *tags*4.2.mk ; do make stage1=true PLDISTROTAGS=$tags 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 ; + make stage1=true PLDISTRO=lxc PLDISTROTAGS=lxc-openvswitch-tags.mk DISTRONAME=${fcdistro} module-tools ; + done 2>/dev/null ; + echo tests +) | sort -uf | grep -v '^build$'