Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong
GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/packages/raspi/export-image/02-set-sources/01-run.sh
18117 views
1
#!/bin/bash -e
2
3
rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
4
find "${ROOTFS_DIR}/var/lib/apt/lists/" -type f -delete
5
on_chroot << EOF
6
apt-get update
7
apt-get -y dist-upgrade
8
apt-get clean
9
EOF
10
11