11 lines
314 B
Bash
Executable File
11 lines
314 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}" ]; then
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.com/raspbian/
|
|
fi
|