poky/scripts/bitbake-prserv-tool
Richard Purdie ffae400179 meta/lib+scripts: Convert to SPDX license headers
This adds SPDX license headers in place of the wide assortment of things
currently in our script headers. We default to GPL-2.0-only except for the
oeqa code where it was clearly submitted and marked as MIT on the most part
or some scripts which had the "or later" GPL versioning.

The patch also drops other obsolete bits of file headers where they were
encoountered such as editor modelines, obsolete maintainer information or
the phrase "All rights reserved" which is now obsolete and not required in
copyright headers (in this case its actually confusing for licensing as all
rights were not reserved).

More work is needed for OE-Core but this takes care of the bulk of the scripts
and meta/lib directories.

The top level LICENSE files are tweaked to match the new structure and the
SPDX naming.

(From OE-Core rev: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-09 16:31:55 +01:00

2.3 KiB
Executable File

#!/usr/bin/env bash

SPDX-License-Identifier: GPL-2.0-only

help () { base=basename $0 echo -e "Usage: $base command" echo "Avaliable commands:" echo -e "\texport <file.conf>: export and lock down the AUTOPR values from the PR service into a file for release." echo -e "\timport <file.conf>: import the AUTOPR values from the exported file into the PR service." }

clean_cache() { s=bitbake -e | grep ^CACHE= | cut -f2 -d\" if [ "x${s}" != "x" ]; then rm -rf ${s} fi }

do_export () { file=$1 [ "x${file}" == "x" ] && help && exit 1 rm -f ${file}

clean_cache
bitbake -R conf/prexport.conf -p
s=`bitbake -R conf/prexport.conf -e | grep ^PRSERV_DUMPFILE= | cut -f2 -d\"`
if [ "x${s}" != "x" ];
then
   [ -e $s ] && mv -f $s $file && echo "Exporting to file $file succeeded!"
   return 0
fi
echo "Exporting to file $file failed!"
return 1

}

do_import () { file=$1 [ "x${file}" == "x" ] && help && exit 1

clean_cache
bitbake -R conf/primport.conf -R $file -p
ret=$?
[ $ret -eq 0 ] && echo "Importing from file $file succeeded!" || echo "Importing from file $file failed!"
return $ret

}

do_migrate_localcount () { df=bitbake -R conf/migrate_localcount.conf -e | \ grep ^LOCALCOUNT_DUMPFILE= | cut -f2 -d\" if [ "x${df}" == "x" ]; then echo "LOCALCOUNT_DUMPFILE is not defined!" return 1 fi

rm -rf $df
clean_cache
echo "Exporting LOCALCOUNT to AUTOINCs..."
bitbake -R conf/migrate_localcount.conf -p
[ ! $? -eq 0 ] && echo "Exporting to file $df failed!" && exit 1

if [ -e $df ];
then
    echo "Exporting to file $df succeeded!"
else
    echo "Exporting to file $df failed!"
    exit 1
fi

echo "Importing generated AUTOINC entries..."
[ -e $df ] && do_import $df

if [ ! $? -eq 0 ]
then
    echo "Migration from LOCALCOUNT to AUTOINCs failed!"
    return 1
fi

echo "Migration from LOCALCOUNT to AUTOINCs succeeded!"
return 0

}

[ $# -eq 0 ] && help && exit 1

case $2 in .conf|.inc) ;; *) echo ERROR: $2 must end with .conf or .inc! exit 1 ;; esac

case $1 in export) do_export $2 ;; import) do_import $2 ;; migrate_localcount) do_migrate_localcount ;; *) help exit 1 ;; esac