|
|
@@ -4,10 +4,15 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
|
|
|
|
|
|
|
BUILD_OPTS="$*" |
|
|
|
|
|
|
|
DOCKER="docker" |
|
|
|
|
|
|
|
if ! ${DOCKER} ps >/dev/null 2>&1; then |
|
|
|
DOCKER="sudo docker" |
|
|
|
# Allow user to override docker command |
|
|
|
DOCKER=${DOCKER:-docker} |
|
|
|
|
|
|
|
# Ensure that default docker command is not set up in rootless mode |
|
|
|
if \ |
|
|
|
! ${DOCKER} ps >/dev/null 2>&1 || \ |
|
|
|
${DOCKER} info 2>/dev/null | grep -q rootless \ |
|
|
|
; then |
|
|
|
DOCKER="sudo ${DOCKER}" |
|
|
|
fi |
|
|
|
if ! ${DOCKER} ps >/dev/null; then |
|
|
|
echo "error connecting to docker:" |
|
|
@@ -48,7 +53,7 @@ fi |
|
|
|
CONTAINER_NAME=${CONTAINER_NAME:-pigen_work} |
|
|
|
CONTINUE=${CONTINUE:-0} |
|
|
|
PRESERVE_CONTAINER=${PRESERVE_CONTAINER:-0} |
|
|
|
PIGEN_DOCKER_OPTS=${PIGEN_DOCKER_OPTS:-""} |
|
|
|
PIGEN_DOCKER_OPTS=${PIGEN_DOCKER_OPTS:-""} |
|
|
|
|
|
|
|
if [ -z "${IMG_NAME}" ]; then |
|
|
|
echo "IMG_NAME not set in 'config'" 1>&2 |
|
|
@@ -75,42 +80,87 @@ fi |
|
|
|
# Modify original build-options to allow config file to be mounted in the docker container |
|
|
|
BUILD_OPTS="$(echo "${BUILD_OPTS:-}" | sed -E 's@\-c\s?([^ ]+)@-c /config@')" |
|
|
|
|
|
|
|
BASE_IMAGE=debian:buster |
|
|
|
${DOCKER} build --build-arg BASE_IMAGE=${BASE_IMAGE} -t pi-gen "${DIR}" |
|
|
|
${DOCKER} build --build-arg BASE_IMAGE=debian:bullseye -t pi-gen "${DIR}" |
|
|
|
|
|
|
|
if [ "${CONTAINER_EXISTS}" != "" ]; then |
|
|
|
trap 'echo "got CTRL+C... please wait 5s" && ${DOCKER} stop -t 5 ${CONTAINER_NAME}_cont' SIGINT SIGTERM |
|
|
|
time ${DOCKER} run --rm --privileged \ |
|
|
|
--cap-add=ALL \ |
|
|
|
-v /dev:/dev \ |
|
|
|
-v /lib/modules:/lib/modules \ |
|
|
|
${PIGEN_DOCKER_OPTS} \ |
|
|
|
--volume "${CONFIG_FILE}":/config:ro \ |
|
|
|
-e "GIT_HASH=${GIT_HASH}" \ |
|
|
|
--volumes-from="${CONTAINER_NAME}" --name "${CONTAINER_NAME}_cont" \ |
|
|
|
pi-gen \ |
|
|
|
bash -e -o pipefail -c "dpkg-reconfigure qemu-user-static && |
|
|
|
cd /pi-gen; ./build.sh ${BUILD_OPTS} && |
|
|
|
rsync -av work/*/build.log deploy/" & |
|
|
|
wait "$!" |
|
|
|
DOCKER_CMDLINE_NAME="${CONTAINER_NAME}_cont" |
|
|
|
DOCKER_CMDLINE_PRE=( \ |
|
|
|
--rm \ |
|
|
|
) |
|
|
|
DOCKER_CMDLINE_POST=( \ |
|
|
|
--volumes-from="${CONTAINER_NAME}" \ |
|
|
|
) |
|
|
|
else |
|
|
|
trap 'echo "got CTRL+C... please wait 5s" && ${DOCKER} stop -t 5 ${CONTAINER_NAME}' SIGINT SIGTERM |
|
|
|
time ${DOCKER} run --name "${CONTAINER_NAME}" --privileged \ |
|
|
|
--cap-add=ALL \ |
|
|
|
-v /dev:/dev \ |
|
|
|
-v /lib/modules:/lib/modules \ |
|
|
|
${PIGEN_DOCKER_OPTS} \ |
|
|
|
--volume "${CONFIG_FILE}":/config:ro \ |
|
|
|
-e "GIT_HASH=${GIT_HASH}" \ |
|
|
|
pi-gen \ |
|
|
|
bash -e -o pipefail -c "dpkg-reconfigure qemu-user-static && |
|
|
|
cd /pi-gen; ./build.sh ${BUILD_OPTS} && |
|
|
|
rsync -av work/*/build.log deploy/" & |
|
|
|
wait "$!" |
|
|
|
DOCKER_CMDLINE_NAME="${CONTAINER_NAME}" |
|
|
|
DOCKER_CMDLINE_PRE=( \ |
|
|
|
) |
|
|
|
DOCKER_CMDLINE_POST=( \ |
|
|
|
) |
|
|
|
fi |
|
|
|
|
|
|
|
# Check if binfmt_misc is required |
|
|
|
binfmt_misc_required=1 |
|
|
|
case $(uname -m) in |
|
|
|
aarch64) |
|
|
|
binfmt_misc_required=0 |
|
|
|
;; |
|
|
|
arm*) |
|
|
|
binfmt_misc_required=0 |
|
|
|
;; |
|
|
|
esac |
|
|
|
|
|
|
|
# Check if qemu-aarch64-static and /proc/sys/fs/binfmt_misc are present |
|
|
|
if [[ "${binfmt_misc_required}" == "1" ]]; then |
|
|
|
if ! qemu_arm=$(which qemu-aarch64-static) ; then |
|
|
|
echo "qemu-aarch64-static not found (please install qemu-user-static)" |
|
|
|
exit 1 |
|
|
|
fi |
|
|
|
if [ ! -f /proc/sys/fs/binfmt_misc/register ]; then |
|
|
|
echo "binfmt_misc required but not mounted, trying to mount it..." |
|
|
|
if ! mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc ; then |
|
|
|
echo "mounting binfmt_misc failed" |
|
|
|
exit 1 |
|
|
|
fi |
|
|
|
echo "binfmt_misc mounted" |
|
|
|
fi |
|
|
|
if ! grep -q "^interpreter ${qemu_arm}" /proc/sys/fs/binfmt_misc/qemu-aarch64* ; then |
|
|
|
# Register qemu-aarch64 for binfmt_misc |
|
|
|
reg="echo ':qemu-aarch64-rpi:M::"\ |
|
|
|
"\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00:"\ |
|
|
|
"\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:"\ |
|
|
|
"${qemu_arm}:F' > /proc/sys/fs/binfmt_misc/register" |
|
|
|
echo "Registering qemu-aarch64 for binfmt_misc..." |
|
|
|
sudo bash -c "${reg}" 2>/dev/null || true |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
trap 'echo "got CTRL+C... please wait 5s" && ${DOCKER} stop -t 5 ${DOCKER_CMDLINE_NAME}' SIGINT SIGTERM |
|
|
|
time ${DOCKER} run \ |
|
|
|
--name "${DOCKER_CMDLINE_NAME}" \ |
|
|
|
--privileged \ |
|
|
|
--cap-add=ALL \ |
|
|
|
-v /dev:/dev \ |
|
|
|
-v /lib/modules:/lib/modules \ |
|
|
|
${PIGEN_DOCKER_OPTS} \ |
|
|
|
--volume "${CONFIG_FILE}":/config:ro \ |
|
|
|
-e "GIT_HASH=${GIT_HASH}" \ |
|
|
|
pi-gen \ |
|
|
|
bash -e -o pipefail -c " |
|
|
|
dpkg-reconfigure qemu-user-static && |
|
|
|
# binfmt_misc is sometimes not mounted with debian bullseye image |
|
|
|
(mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc || true) && |
|
|
|
cd /pi-gen; ./build.sh ${BUILD_OPTS} && |
|
|
|
rsync -av work/*/build.log deploy/ |
|
|
|
" & |
|
|
|
wait "$!" |
|
|
|
|
|
|
|
# Ensure that deploy/ is always owned by calling user |
|
|
|
echo "copying results from deploy/" |
|
|
|
${DOCKER} cp "${CONTAINER_NAME}":/pi-gen/deploy . |
|
|
|
${DOCKER} cp "${CONTAINER_NAME}":/pi-gen/deploy - | tar -xf - |
|
|
|
|
|
|
|
echo "copying log from container ${CONTAINER_NAME} to depoy/" |
|
|
|
${DOCKER} logs --timestamps "${CONTAINER_NAME}" &>deploy/build-docker.log |
|
|
|
|
|
|
|
ls -lah deploy |
|
|
|
|
|
|
|
# cleanup |
|
|
|