blob: 389ebe50c2ffd5570a85354033240dcb7249f03e (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash -e
if [ "${USE_RASPI_SOURCE}" = "1" ]; then
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.org/raspbian/
else
bootstrap ${RELEASE} "${ROOTFS_DIR}" ${DEB_SERVER}
fi
|