summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mrc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mrc.sh b/include/mrc.sh
index a5f1b37c..6e00292b 100644
--- a/include/mrc.sh
+++ b/include/mrc.sh
@@ -35,8 +35,8 @@ extract_partition()
dd if="${1%.zip}" of="root-a.ext2" bs=1024 skip=$(( $START / 1024 )) \
count=$(( $SIZE / 1024 )) || $err "ex dd ${1%.zip}, root-a.ext2"
- printf "cd /usr/sbin\ndump chromeos-firmwareupdate $SHELLBALL\nquit" \
- | debugfs "root-a.ext2" || $err "can't extract shellball"
+ printf "cd /usr/sbin\ndump chromeos-firmwareupdate %s\nquit" \
+ "$SHELLBALL" | debugfs "root-a.ext2" || $err "!extract shellball"
}
extract_refcode()