From b0f26a135b34f212f59818ea6cc85ce83ecb28bc Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Fri, 21 Apr 2023 22:01:40 +0200 Subject: aux: don't use to new dd options Actually oseek comes only with rawhide's version, just use the standard option name. --- test/lib/aux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/lib/aux.sh b/test/lib/aux.sh index 62635ce84..d6689e3b8 100644 --- a/test/lib/aux.sh +++ b/test/lib/aux.sh @@ -923,7 +923,7 @@ cleanup_idm_context() { # TODO: add support for parametrized [OPTION] usage (Not usable ATM) # TODO: -bs blocksize (defaults 512K) # TODO: -count count/length (defaults to whole device, otherwise in BS units) -# TODO: -seek offset/oseek (defaults 0, begining of zeroing area in BS unit) +# TODO: -seek offset/seek (defaults 0, begining of zeroing area in BS unit) clear_devs() { local bs= local count= @@ -968,7 +968,7 @@ corrupt_dev() { test -n "${a[0]-}" || return 0 # Seek for the sequence and replace it with corruption pattern - echo -n "${a[1]/$2/$3}" | dd of="$1" bs=1 oseek="${a[0]}" conv=fdatasync + echo -n "${a[1]/$2/$3}" | dd of="$1" bs=1 seek="${a[0]}" conv=fdatasync } prepare_backing_dev() { -- cgit v1.2.1