summaryrefslogtreecommitdiff
path: root/include/mrc.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-10-07 05:52:36 +0100
committerLeah Rowe <leah@libreboot.org>2025-10-07 05:52:36 +0100
commit11a3e9d88799cfffa77beb836cdef54516690591 (patch)
treefd8dbc984d512da5a8e168537a457aa7ba51229f /include/mrc.sh
parentfb95e4ad687e8263948ebcad4c403ce04b8b5a0d (diff)
xbmk: minor code cleanup (79 character rule)HEADmaster
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.sh4
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" || \