From 7bf0476dc5e8a09e524b3116627d57aa5edbfd2b Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Wed, 21 Dec 2022 20:24:30 +0100 Subject: attach the disk via virtio interface for some speed gain and to unify the device node to be vda always --- debvm-run | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'debvm-run') diff --git a/debvm-run b/debvm-run index bc206ac..7e81b79 100755 --- a/debvm-run +++ b/debvm-run @@ -63,14 +63,6 @@ if command -v elf-arch >/dev/null 2>&1; then /sbin/debugfs "$IMAGE" -R "cat /bin/true" > "$KERNELTMP" VMARCH=$(elf-arch "$KERNELTMP") fi -case "$VMARCH" in - amd64|i386|ppc64el) - DISKDEV=sda - ;; - *) - DISKDEV=vda - ;; -esac case "$VMARCH" in mips*|ppc64el) KERNELLINK=vmlinux @@ -86,7 +78,7 @@ INITRDNAME=$(/sbin/debugfs "$IMAGE" -R "stat initrd.img" | sed 's/Fast link dest test -n "$KERNELNAME" || die "failed to discover kernel image" test -n "$INITRDNAME" || die "failed to discover initrd image" -KERNEL_CMDLINE=root=/dev/$DISKDEV +KERNEL_CMDLINE=root=/dev/vda NETDEV="user,id=net0" set -- \ @@ -95,7 +87,7 @@ set -- \ -smp "$(nproc)" \ -kernel "$KERNELTMP" \ -initrd "$INITRDTMP" \ - -drive "media=disk,format=raw,discard=unmap,file=$IMAGE" \ + -drive "media=disk,format=raw,discard=unmap,file=$IMAGE,if=virtio" \ -device "virtio-net-pci,netdev=net0" \ "$@" -- cgit v1.2.3