# HG changeset patch # User Paul Issott # Date 1396805808 -3600 # Node ID 9a53e64a39fbd7d60dc51eec2e99763aafd89b35 # Parent 055bf0ee633d99258c5b76159b3eb6356d26cb07 install.sh: you must be root to boot (needs checking) diff -r 055bf0ee633d -r 9a53e64a39fb rpi/release/install.sh --- a/rpi/release/install.sh Sun Apr 06 14:50:56 2014 +0200 +++ b/rpi/release/install.sh Sun Apr 06 18:36:48 2014 +0100 @@ -84,7 +84,8 @@ echo -n "Installing: boot files..." cp -f boot/* ${boot}; status echo -n "Installing: rootfs files..." -cp -a rootfs/* ${root}; status +cp -a rootfs/* ${root}; +chown -R root:root ${root}; status # Unmount echo -n "Unmounting: RPi sdcard..."