mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
* fix: make loop device during container build of ISO This creates the loop device during container runtime which allows lorax to build the ISO and not need to rely on a host provided device file. Fixes: #22 * chore: updated readme --------- Co-authored-by: Noel Miller <noelmiller@protonmail.com>
8 lines
341 B
Bash
Executable file
8 lines
341 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# pre-create loop devices manually. In containers we can't use losetup for that.
|
|
mknod -m 0660 /dev/loop0 b 7 0 2> /dev/null || true
|
|
|
|
make output/${IMAGE_NAME}-${IMAGE_TAG}.iso ARCH=${ARCH} VERSION=${VERSION} IMAGE_REPO=${IMAGE_REPO} IMAGE_NAME=${IMAGE_NAME} IMAGE_TAG=${IMAGE_TAG} VARIANT=${VARIANT} WEB_UI=${WEB_UI}
|