blob: deb0774bde2d80dbe5a0b6401e3092967d8b0de1 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# If the filesystem becomes corrupted this shell script is used to
# completly reset it
scriptdir="$(dirname "$0")"
cd "$scriptdir"
rm ext2.img
mkfs.ext2 ext2.img 20M
./sync.sh
|