Browse Source

x230: compile: print the result file path at the end

pull/35/head
Martin Kepplinger 6 years ago
parent
commit
61f7332119
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      x230/compile.sh

+ 3
- 1
x230/compile.sh View File

@ -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

Loading…
Cancel
Save