2016-04-11 07:29:41 +01:00
|
|
|
#!/bin/bash -e
|
2017-07-27 06:11:07 -04:00
|
|
|
|
2023-09-07 12:50:34 +01:00
|
|
|
if [ "$RELEASE" != "bookworm" ]; then
|
2022-11-08 11:28:18 +00:00
|
|
|
echo "WARNING: RELEASE does not match the intended option for this branch."
|
|
|
|
echo " Please check the relevant README.md section."
|
|
|
|
fi
|
|
|
|
|
2024-02-22 23:19:10 -05:00
|
|
|
if [ ! -d "${ROOTFS_DIR}" ]; then
|
2023-09-08 11:39:51 +01:00
|
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.com/raspbian/
|
2016-04-11 07:29:41 +01:00
|
|
|
fi
|