-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.conf
31 lines (24 loc) · 1.59 KB
/
build.conf
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
# Copyright (C) 2023 bytes at work AG - https://www.bytesatwork.io
VERSION="1"
CUSTOMER_NAME="bytesatwork"
BUILD_NAME="bytesatwork-bytedevkit-am62x"
YOCTO_MACHINES="bytedevkit-am62x"
YOCTO_DISTRO="poky-bytesatwork"
YOCTO_IMAGES="bytesatwork-minimal-image"
SDK_MACHINES="${YOCTO_MACHINES}"
SDK_IMAGE="bytesatwork-minimal-image"
CONFIG_DOCKER=""
REPO_URL="[email protected]:bytesatwork/bsp-platform-ti.git"
export_artifacts() {
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/tiboot3.bin" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/tispl.bin" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/u-boot.img" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/bytesatwork-minimal-image-bytedevkit-am62x.manifest" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/bytesatwork-minimal-image-bytedevkit-am62x.wic.bmap" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/images/bytedevkit-am62x/bytesatwork-minimal-image-bytedevkit-am62x.wic.gz" .
}
export_artifacts_sdk() {
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/sdk/poky-bytesatwork-glibc-x86_64-bytesatwork-minimal-image-aarch64-bytedevkit-am62x-toolchain-4.0.9.host.manifest" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/sdk/poky-bytesatwork-glibc-x86_64-bytesatwork-minimal-image-aarch64-bytedevkit-am62x-toolchain-4.0.9.sh" .
docker cp -L "$id:/home/yocto/yocto/build/deploy-ti/sdk/poky-bytesatwork-glibc-x86_64-bytesatwork-minimal-image-aarch64-bytedevkit-am62x-toolchain-4.0.9.target.manifest" .
}