-
Notifications
You must be signed in to change notification settings - Fork 0
/
uncramfs_all.sh
executable file
·119 lines (100 loc) · 1.96 KB
/
uncramfs_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
FSIMG="$1"
ROOTFS="$2"
ENDIANESS="$3"
MKFS=""
function finish
{
rm -f "$FSIMG.le"
echo "MKFS=\"$MKFS\""
}
if [ "$FSIMG" == "" ] || [ "$FSIMG" == "-h" ]
then
echo "Usage: $(basename $0) <cramfs image> [output directory] [-be | -le]\n"
exit 1
fi
if [ $UID -ne 0 ]
then
SUDO="sudo"
fi
if [ "$ENDIANESS" == "" ]
then
if [ "$(file $FSIMG | grep 'big endian')" != "" ]
then
ENDIANESS="-be"
fi
fi
if [ "$ROOTFS" == "" ]
then
ROOTFS="./cramfs-root"
BDIR=$ROOTFS
I=1
while [ -e $ROOTFS ]
do
ROOTFS=$BDIR-$I
((I=$I+1))
done
fi
FSIMG=$(readlink -f $FSIMG)
ROOTFS=$(readlink -f $ROOTFS)
# Make sure we're operating out of the FMK directory
cd $(dirname $(readlink -f $0))
if [ "$ENDIANESS" == "-be" ]
then
./src/cramfsswap/cramfsswap "$FSIMG" "$FSIMG.le"
else
cp "$FSIMG" "$FSIMG.le"
fi
if [ -e "$FSIMG.le" ]
then
# Try uncramfs-lzma first. If the LZMA decompression fails, it will exit with an error code.
./src/uncramfs-lzma/uncramfs-lzma "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
nfiles=0
bad=0
# Check at least the first five files to make sure they didn't just extract to all zero's
for FILE in $(find "$ROOTFS")
do
if [ -f "$FILE" ]
then
echo "Checking $FILE"
if [ "$(hexdump "$FILE" | wc -l)" -lt "4" ] && [ "$(hexdump "$FILE" | head -1 | grep -v '0')" == "" ]
then
((bad=$bad+1))
else
((bad=$bad-1))
fi
((nfiles=nfiles+1))
fi
if [ "$nfiles" == "5" ]
then
break
fi
done
if [ "$bad" != "$nfiles" ]
then
# Does not exist, will not be able to re-build the file system!
MKFS="./src/uncramfs-lzma/mkcramfs-lzma"
finish
exit 0
fi
fi
./src/cramfs-2.x/cramfsck -x "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
MKFS="./src/cramfs-2.x/mkcramfs"
finish
exit 0
fi
./src/uncramfs/uncramfs "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
MKFS="./src/cramfs-2.x/mkcramfs"
finish
exit 0
fi
fi
echo "File extraction failed!"
finish
exit 1