UNVR-NAS/scripts/docker/run_mkimage_initial.sh
Chris Blake 85a5bd66e0 feat: initial upload
Initial public release
2024-05-19 14:04:59 -05:00

19 lines
514 B
Bash
Executable file

#!/bin/bash
set -e
scripts_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
. ${scripts_path}/vars.sh
# Tempdir for root
GENIMAGE_ROOT=$(mktemp -d)
# "fake" file so generation is happy
touch ${GENIMAGE_ROOT}/placeholder
# Generate our boot and rootfs disk images
genimage \
--rootpath "${GENIMAGE_ROOT}" \
--tmppath "/tmp/genimage-initial-tmppath" \
--inputpath "${build_path}" \
--outputpath "${build_path}" \
--config "${root_path}/genimage_initial.cfg"