mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
xbmk: minor code cleanup (79 character rule)
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>
This commit is contained in:
+2
-2
@@ -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" || \
|
||||
|
||||
Reference in New Issue
Block a user