Démontage automatique des disques USB en suspend
authorgobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Sun, 15 May 2011 02:53:16 +0000 (02:53 +0000)
committergobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Sun, 15 May 2011 02:53:16 +0000 (02:53 +0000)
stage2/misc/hvs2ram

index 8b68703..376b1db 100755 (executable)
@@ -10,6 +10,11 @@ trap 'rm -f $TMP_FILE' 0 1 15
 # write all unwritten data (just in case)
 sync
 
+# Unmount all removable media
+for p in $(ls /dev/disk/by-id/usb* | grep "\-part"); do
+    umount ${p}
+done
+
 # dump current data from the video card to the
 # temporary file
 cat /proc/bus/pci/$ID > $TMP_FILE