fix broken repo

This commit is contained in:
2023-06-14 22:12:45 +02:00
commit 6eab425ace
33 changed files with 1003 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
dev=$1
[ "$dev" = "" ] && exit 1
fs=$(blkid "$dev" | grep -o ' TYPE=".*' | cut -f 2 -d '"')
case $fs in
ext2|ext3|ext4) e2fsck -y $dev ;;
vfat|msdos) fsck.fat -y $dev ;;
exfat) exfatfsck $dev ;;
*) echo "(${dev}) Not supported: $fs" ; exit 1 ;;
esac
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.