2016-04-11 07:29:41 +01:00
|
|
|
#!/bin/bash -e
|
2017-07-27 06:11:07 -04:00
|
|
|
|
2022-11-08 11:28:18 +00:00
|
|
|
if [ "$RELEASE" != "bullseye" ]; then
|
|
|
|
echo "WARNING: RELEASE does not match the intended option for this branch."
|
|
|
|
echo " Please check the relevant README.md section."
|
|
|
|
fi
|
|
|
|
|
2021-02-10 11:37:15 +01:00
|
|
|
if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then
|
2020-02-26 05:36:39 -08:00
|
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.org/raspbian/
|
2016-04-11 07:29:41 +01:00
|
|
|
fi
|