From 61f733211940a523d5b813c2909e1ad6338477aa Mon Sep 17 00:00:00 2001 From: Martin Kepplinger Date: Mon, 18 Jun 2018 14:44:12 +0200 Subject: [PATCH] x230: compile: print the result file path at the end --- x230/compile.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x230/compile.sh b/x230/compile.sh index b2755b6..3292718 100755 --- a/x230/compile.sh +++ b/x230/compile.sh @@ -38,6 +38,8 @@ else RELEASEFILE="coreboot_$MAINBOARD-$MODEL-top.rom" fi dd if="$DOCKER_COREBOOT_DIR/build/coreboot.rom" of="$DOCKER_COREBOOT_DIR/$RELEASEFILE" bs=1M skip=8 - sha256sum "$DOCKER_COREBOOT_DIR/$RELEASEFILE" > "$DOCKER_COREBOOT_DIR/${RELEASEFILE}".sha256 + echo "==================== result: ======================" + echo "$DOCKER_COREBOOT_DIR/$RELEASEFILE" + echo "===================================================" fi