mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-30 02:28:53 +00:00
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
BUILD_DIR='/home/builder/tmp'
|
|
|
|
mkdir -p $BUILD_DIR
|
|
cp -r $SOURCE_DIR/* $BUILD_DIR/
|
|
cd $BUILD_DIR
|
|
source oe-core/oe-init-build-env build bitbake
|
|
bitbake core-image-minimal
|
|
qemu=$(cat conf/local.conf | grep '^MACHINE ??= ' | grep -o '"[^"]\+"' | tr -d '"')
|
|
cp --dereference tmp/deploy/images/$qemu/core-image-minimal-$qemu.tar.gz $DEST_DIR/rootfs.tar.gz
|