diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-07 05:52:36 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-07 05:52:36 +0100 |
commit | 11a3e9d88799cfffa77beb836cdef54516690591 (patch) | |
tree | fd8dbc984d512da5a8e168537a457aa7ba51229f /include/mrc.sh | |
parent | fb95e4ad687e8263948ebcad4c403ce04b8b5a0d (diff) |
recent re-factoring lead to certain code lines that
exceeded 79 characters in length.
we like to avoid this, whenever possible.
Signed-off-by: Leah Rowe <leah@libreboot.org>
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" || \ |