Skip to content

Commit

Permalink
coreos-installer: dd status=none
Browse files Browse the repository at this point in the history
  • Loading branch information
tuan-hoang1 committed Nov 16, 2019
1 parent e9361c2 commit abf14cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coreos-installer
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ EOF
set -- ${boot_partition[@]} ${root_partition[@]}
while [ $# -gt 0 ]; do
dd bs=4096 if="${imagefile}" iflag=fullblock of="${DEST_DEV}" \
status=progress \
status=none \
skip="$1" \
count="$2" \
seek="$(( $3 * $block_per_tracks ))"
Expand Down Expand Up @@ -793,7 +793,7 @@ write_image_to_zfcp_disk() {
do
eval ${line%%:*} ${line##*:}
dd if=${imagefile} bs=512 iflag=fullblock \
of="${DEST_DEV}" status=progress skip=$start seek=$start count=$size
of="${DEST_DEV}" status=none skip=$start seek=$start count=$size
if [[ $? -ne 0 ]]; then
log "failed to write image to zFCP SCSI disk"
exit 1
Expand Down

0 comments on commit abf14cf

Please sign in to comment.