diff options
Diffstat (limited to 'include/mrc.sh')
-rw-r--r-- | include/mrc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mrc.sh b/include/mrc.sh index 9d4566be..f1e31fa7 100644 --- a/include/mrc.sh +++ b/include/mrc.sh @@ -68,8 +68,8 @@ extract_partition() SIZE=$(( $( echo $ROOTP | cut -f4 -d\ | tr -d "B" ) )) - x_ dd if="${1%.zip}" of="root-a.ext2" bs=1024 skip=$(( $START / 1024 )) \ - count=$(( $SIZE / 1024 )) + x_ dd if="${1%.zip}" of="root-a.ext2" bs=1024 \ + skip=$(( $START / 1024 )) count=$(( $SIZE / 1024 )) printf "cd /usr/sbin\ndump chromeos-firmwareupdate %s\nquit" \ "$SHELLBALL" | debugfs "root-a.ext2" || \ |