@buzz thank you very much for the help! Quick question --
It seemed like the RetroPie setup script runs apt-get update and apt-get -y dist-upgrade before calling post_update and update_packages. Do I have that right? If so, should the order of the commands be?:
# do not run this often as it will put strain on our server - weekly should be enough
cd ~/RetroPie-Setup/
git pull
sudo __nodialog=1 ./retropie_packages.sh raspbiantools apt_upgrade
sudo __nodialog=1 ./retropie_packages.sh setup post_update
sudo __nodialog=1 ./retropie_packages.sh setup update_packages
Also, is there anything special about the raspbiantools apt_upgrade function(s) vs. just running?:
sudo apt-get update
sudo apt-get -y dist-upgrade
Just trying to figure out what is best before calling this "done". Thanks again!