11 lines
342 B
Bash
Executable File
11 lines
342 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [ "$RELEASE" != "bookworm" ]; then
|
|
echo "WARNING: RELEASE does not match the intended option for this branch."
|
|
echo " Please check the relevant README.md section."
|
|
fi
|
|
|
|
if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.org/raspbian/
|
|
fi
|