X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=devtools%2Fget-maintainer.sh;h=bba4d3f68db8de840963c92b675e9cf356260fb1;hb=d9934a8a3dfe4de79306249493813d94369ea992;hp=85740f5afd2af1ca67187c7d233721decca902e3;hpb=4a4a20c4775b578379fc964952b0bbcff1ac88d6;p=dpdk.git diff --git a/devtools/get-maintainer.sh b/devtools/get-maintainer.sh index 85740f5afd..bba4d3f68d 100755 --- a/devtools/get-maintainer.sh +++ b/devtools/get-maintainer.sh @@ -7,7 +7,7 @@ # - DPDK_GETMAINTAINER_PATH . $(dirname $(readlink -f $0))/load-devel-config -options="--no-git-fallback" +options="--no-tree --no-git-fallback" options="$options --no-rolestats" print_usage () { @@ -31,28 +31,4 @@ if [ ! -f "$DPDK_GETMAINTAINER_PATH" ] || exit 1 fi -FILES="COPYING CREDITS Kbuild" -FOLDERS="Documentation arch include fs init ipc scripts" - -# Kernel script checks for some files and folders to run -workaround () { - for f in $FILES; do - if [ ! -f $f ]; then touch $f; fi - done - - for d in $FOLDERS; do - if [ ! -d $d ]; then mkdir $d; fi - done -} - -fix_workaround () { - for f in $FILES; do if [ -f $f ]; then rm -f $f; fi; done - for d in $FOLDERS; do if [ -d $d ]; then rmdir $d; fi; done -} - -# clean workaround on exit -trap fix_workaround EXIT - -workaround $DPDK_GETMAINTAINER_PATH $options $@ -# fix_workaround called on exit by trap