SystemAgent_BR2/buildroot_make.sh

9 lines
182 B
Bash
Raw Normal View History

2021-06-12 13:48:23 +00:00
#!/bin/bash
if [ -z ${BUILDROOT_PATH} ]; then
echo "BUILDROOT_PATH environment variable is not set."
exit
fi
make O=${PWD}/output BR2_EXTERNAL=${PWD} -C ${BUILDROOT_PATH} "$@"