@@ -13,7 +13,7 @@ bootstrap(){ | |||||
BOOTSTRAP_CMD=qemu-debootstrap | BOOTSTRAP_CMD=qemu-debootstrap | ||||
fi | fi | ||||
BOOTSTRAP_ARGS+=(--arch armhf) | |||||
BOOTSTRAP_ARGS+=(--arch arm64) | |||||
BOOTSTRAP_ARGS+=(--components "main,contrib,non-free") | BOOTSTRAP_ARGS+=(--components "main,contrib,non-free") | ||||
BOOTSTRAP_ARGS+=(--keyring "${STAGE_DIR}/files/raspberrypi.gpg") | BOOTSTRAP_ARGS+=(--keyring "${STAGE_DIR}/files/raspberrypi.gpg") | ||||
BOOTSTRAP_ARGS+=(--exclude=info) | BOOTSTRAP_ARGS+=(--exclude=info) | ||||
@@ -14,6 +14,7 @@ fi | |||||
on_chroot apt-key add - < files/raspberrypi.gpg.key | on_chroot apt-key add - < files/raspberrypi.gpg.key | ||||
on_chroot << EOF | on_chroot << EOF | ||||
dpkg --add-architecture armhf | |||||
apt-get update | apt-get update | ||||
apt-get dist-upgrade -y | apt-get dist-upgrade -y | ||||
EOF | EOF |
@@ -1,3 +1,7 @@ | |||||
deb http://raspbian.raspberrypi.org/raspbian/ RELEASE main contrib non-free rpi | |||||
# Uncomment line below then 'apt-get update' to enable 'apt-get source' | |||||
#deb-src http://raspbian.raspberrypi.org/raspbian/ RELEASE main contrib non-free rpi | |||||
deb http://deb.debian.org/debian RELEASE main contrib non-free | |||||
deb http://security.debian.org/debian-security RELEASE-security main contrib non-free | |||||
deb http://deb.debian.org/debian RELEASE-updates main contrib non-free | |||||
# Uncomment deb-src lines below then 'apt-get update' to enable 'apt-get source' | |||||
#deb-src http://deb.debian.org/debian RELEASE main contrib non-free | |||||
#deb-src http://security.debian.org/debian-security RELEASE-security main contrib non-free | |||||
#deb-src http://deb.debian.org/debian RELEASE-updates main contrib non-free |
@@ -1,5 +1,5 @@ | |||||
#!/bin/bash -e | #!/bin/bash -e | ||||
if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then | if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then | ||||
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.org/raspbian/ | |||||
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://deb.debian.org/debian/ | |||||
fi | fi |
@@ -62,6 +62,9 @@ display_auto_detect=1 | |||||
dtoverlay=vc4-kms-v3d | dtoverlay=vc4-kms-v3d | ||||
max_framebuffers=2 | max_framebuffers=2 | ||||
# Run in 64-bit mode | |||||
arm_64bit=1 | |||||
# Disable compensation for displays with overscan | # Disable compensation for displays with overscan | ||||
disable_overscan=1 | disable_overscan=1 | ||||