aboutsummaryrefslogtreecommitdiffstats
path: root/stage0/prerun.sh
blob: 6b1b831b8fa629f38caa86cd55b9c8067653b887 (plain)
1
2
3
4
5
6
7
#!/bin/bash -e

if [ "${TARGET_RASPI}" = "1" -a "${TARGET_ARCH}" = "armhf" ]; then
    bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.org/raspbian/
else
    bootstrap ${RELEASE} "${ROOTFS_DIR}" http://deb.debian.org/debian/
fi