summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-10-18 20:12:50 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-10-22 12:54:55 +0000
commite1b902c92c677ff4b3aeb5f12186a53cd719e192 (patch)
tree14ed7209eea7aefbd2cf228c782c1b6dfa7a22c0 /util
parent2f2e113f6077b57c20d482fafaac1b3331ad9f8d (diff)
downloadcoreboot-e1b902c92c677ff4b3aeb5f12186a53cd719e192.tar.gz
coreboot-e1b902c92c677ff4b3aeb5f12186a53cd719e192.tar.bz2
coreboot-e1b902c92c677ff4b3aeb5f12186a53cd719e192.zip
util/chromeos: Don't hide error output
Change-Id: Idf29275575ca7965a0df98dbc8f2b27ab9c5ec4d Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36134 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'util')
-rwxr-xr-xutil/chromeos/crosfirmware.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/chromeos/crosfirmware.sh b/util/chromeos/crosfirmware.sh
index 9d2ca84aa998..dc33fac8cef8 100755
--- a/util/chromeos/crosfirmware.sh
+++ b/util/chromeos/crosfirmware.sh
@@ -76,7 +76,7 @@ extract_partition()
SIZE=$(( $( echo $ROOTP | cut -f4 -d\ | tr -d "B" ) ))
dd if=$FILE of=$ROOTFS bs=$_bs skip=$(( $START / $_bs )) \
- count=$(( $SIZE / $_bs )) > /dev/null 2>&1
+ count=$(( $SIZE / $_bs )) > /dev/null
}
extract_shellball()