From b00f1d5d788913b835294438e3756753b310402e Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 27 Aug 2026 14:31:52 +0200 Subject: [PATCH] fix: Update createDevice parameters for base image (#1402) --- src/prepare.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/prepare.sh b/src/prepare.sh index 06c55b3..472179b 100644 --- a/src/prepare.sh +++ b/src/prepare.sh @@ -12,8 +12,8 @@ addSystemDisks() { setOwner "$boot" || warn "failed to set the owner for \"$boot\" !" setOwner "$system" || warn "failed to set the owner for \"$system\" !" - DISK_OPTS+=$(createDevice "$boot" "$DISK_TYPE" "1" "0xa" "raw" "$DISK_IO" "$DISK_CACHE" "" "" "synoboot") - DISK_OPTS+=$(createDevice "$system" "$DISK_TYPE" "2" "0xb" "raw" "$DISK_IO" "$DISK_CACHE" "" "" "synosys") + DISK_OPTS+=$(createDevice "$boot" "$DISK_TYPE" "1" "0xa" "raw" "" "" "synoboot") + DISK_OPTS+=$(createDevice "$system" "$DISK_TYPE" "2" "0xb" "raw" "" "" "synosys") return 0 }