Skip to content

Commit

Permalink
fix hasty work on unsquashfs-all, this corrects the trial/retry of un…
Browse files Browse the repository at this point in the history
…squashfs in prior commit
  • Loading branch information
jeremycollake committed Jun 11, 2013
1 parent 7ed486f commit 4a515b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion firmware_mod_kit_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.98
0.99
7 changes: 3 additions & 4 deletions unsquashfs_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ do
unsquashfs="$ROOT/$SUBDIR/unsquashfs"
mksquashfs="$ROOT/$SUBDIR/mksquashfs"

if [ "$MKFS" == "" ] && [ -e $unsquashfs-lzma ]
then
if [ -e $unsquashfs-lzma ]; then
echo -ne "\nTrying $unsquashfs-lzma... "

$unsquashfs-lzma $DEST $IMG 2>/dev/null &
Expand Down Expand Up @@ -127,8 +126,8 @@ do
rm -rf "$DIR"
fi
fi
elif [ -e $unsquashfs ]
then
fi
if [ "$MKFS" == "" ] && [ -e $unsquashfs ]; then
echo -ne "\nTrying $unsquashfs... "

$unsquashfs $DEST $IMG 2>/dev/null &
Expand Down

0 comments on commit 4a515b9

Please sign in to comment.