mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-29 10:08:52 +00:00
13 lines
348 B
Bash
Executable File
13 lines
348 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
|
|
MACHINE=$TARGET_MACHINE bitbake core-image-minimal
|
|
cp --dereference tmp-glibc/deploy/images/$TARGET_MACHINE/core-image-minimal-$TARGET_MACHINE.tar.gz $DEST_DIR/rootfs.tar.gz
|