blob: bdadbb6dd4c30b02c62fc11dc919c24bcf35605c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# (c) 2023 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
################################################################################
## Run yocto-check-layer over AGL layers
################################################################################
pushd .
external/poky/scripts/install-buildtools
source external/poky/buildtools/environment-setup-x86_64-pokysdk-linux
# meta-agl
pushd meta-agl
if test -x scripts/ci-yocto-check-layer.sh ; then
./scripts/ci-yocto-check-layer.sh
fi
popd
# meta-agl-demo
pushd meta-agl-demo
if test -x scripts/ci-yocto-check-layer.sh ; then
./scripts/ci-yocto-check-layer.sh
fi
popd
# meta-agl-devel
#pushd meta-agl-devel
# for i in `find . -name "run-yocto-check-layer.sh" | sed -e "s#/scripts/run-yocto-check-layer.sh##g" | sort | uniq` ; do
# pushd $i
# if test -x ./scripts/run-yocto-check-layer.sh ; then
# ./scripts/run-yocto-check-layer.sh
# fi
# popd
# done
#popd
|