From 57f521cf797110ca61fb0777bb2dc19eb111e1ba Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 12 Aug 2023 15:18:11 +0200 Subject: [PATCH] revert last commit --- usr/lib/archboot/installer/blockdevices.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index bda7ac862..6ea534235 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -288,7 +288,7 @@ _clean_disk() { # clear all magic strings/signatures - mdadm, lvm, partition tables etc wipefs -a -f "${1}" &>"${_NO_LOG}" # really clear everything MBR/GPT at the beginning of the device! - dd if=/dev/zero of=${1} bs=1M count=20 &>"${_NO_LOG}" + dd if=/dev/zero of=${1} bs=1M count=10 &>"${_NO_LOG}" partprobe "${1}" &>"${_NO_LOG}" }