# HG changeset patch # User Christophe Lincoln # Date 1205503190 -3600 # Node ID b172321679b9bcf6da64bf0a7197ee778253beb9 # Parent c16a926e5018f85fde8f52f6b9ac86fd81140680 Mount /home uid=500 if fs is FAT32 diff -r c16a926e5018 -r b172321679b9 etc/init.d/bootopts.sh --- a/etc/init.d/bootopts.sh Thu Mar 13 17:35:51 2008 +0100 +++ b/etc/init.d/bootopts.sh Fri Mar 14 14:59:50 2008 +0100 @@ -34,7 +34,8 @@ if [ -n "$DEVID" ] && grep -q "$DEVID" /proc/partitions ; then echo "Mounting /home on /dev/$DEVID... " mv /home/hacker /tmp/hacker-home - mount /dev/$DEVID /home + mount /dev/$DEVID /home -o uid=500,gid=500 2>/dev/null \ + || mount /dev/$DEVID /home gen_home_swap else echo "Unable to find $DEVICE... "