Created
September 2, 2019 07:23
-
-
Save birgersp/299ea9e6b51be70486d85f29ce3482f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://gauvain.pocentek.net/docs/raspbian-chroot/ | |
apt install schroot | |
echo \ | |
[jessie] \ | |
description=Raspbian armhf \ | |
directory=/var/chroot \ | |
users=$USER \ | |
groups=sbuild \ | |
root-groups=root >> /etc/schroot/schroot.conf | |
apt install qemu-user-static debootstrap | |
CHROOT=/var/chroot | |
debootstrap --no-check-gpg --foreign --arch=armhf jessie $CHROOT http://archive.raspbian.org/raspbian | |
cp /usr/bin/qemu-arm-static $CHROOT/usr/bin | |
chroot $CHROOT /debootstrap/debootstrap --second-stage | |
cat > $CHROOT/etc/apt/sources.list << EOF | |
deb http://mirrordirector.raspbian.org/raspbian/ jessie main contrib non-free rpi | |
deb http://archive.raspberrypi.org/debian/ jessie main | |
EOF | |
chroot $CHROOT apt-key adv --keyserver keyserver.ubuntu.com --recv 82B129927FA3303E | |
chroot $CHROOT apt-get update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment