diff --git a/ci/yocto-check-layer.sh b/ci/yocto-check-layer.sh new file mode 100755 index 00000000..c7185b73 --- /dev/null +++ b/ci/yocto-check-layer.sh @@ -0,0 +1,16 @@ +#!/bin/sh -e + +TOPDIR=$(realpath $(dirname $(readlink -f $0))/..) + +# Yocto Project layer checking tool +CMD="yocto-check-layer-wrapper" +# Layer to check +CMD="$CMD $TOPDIR" +# Disable auto layer discovery +CMD="$CMD --no-auto" +# Layers to process for dependencies +CMD="$CMD --dependency `pwd`/poky/meta `pwd`/meta-qcom" +# Disable automatic testing of dependencies +CMD="$CMD --no-auto-dependency" + +exec kas shell $TOPDIR/ci/base.yml --command "$CMD"