Index: scripts/setup.sh =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r24cb5c23a0f79faeac6ac89b7e5714f3884164ad --- scripts/setup.sh (.../setup.sh) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ scripts/setup.sh (.../setup.sh) (revision 24cb5c23a0f79faeac6ac89b7e5714f3884164ad) @@ -25,8 +25,13 @@ if [ $? -eq 0 ]; then break fi + done +echo "Setup the timezone (PST)" +rm -f /etc/localtime +ln -s /usr/share/zoneinfo/America/Los_Angeles /etc/localtime + echo "Setup the hardware clock" hwclock -w @@ -42,6 +47,9 @@ echo "Syncing file system updates" sync +echo "Making UI scripts executable" +chmod a+x /home/root/*.sh + read -p "ready to reboot? [y,n]" -n 1 -r CONFIRM if [ "$CONFIRM" == "y" ]; then reboot