You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
684 B

  1. #!/bin/bash -e
  2. install -m 644 files/sources.list "${ROOTFS_DIR}/etc/apt/"
  3. install -m 644 files/raspi.list "${ROOTFS_DIR}/etc/apt/sources.list.d/"
  4. sed -i "s/RELEASE/${RELEASE}/g" "${ROOTFS_DIR}/etc/apt/sources.list"
  5. sed -i "s/RELEASE/${RELEASE}/g" "${ROOTFS_DIR}/etc/apt/sources.list.d/raspi.list"
  6. if [ -n "$APT_PROXY" ]; then
  7. install -m 644 files/51cache "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
  8. sed "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache" -i -e "s|APT_PROXY|${APT_PROXY}|"
  9. else
  10. rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
  11. fi
  12. on_chroot apt-key add - < files/raspberrypi.gpg.key
  13. on_chroot << EOF
  14. dpkg --add-architecture armhf
  15. apt-get update
  16. apt-get dist-upgrade -y
  17. EOF