From 0a09e5af4790a5fdbe99009959753c61def8f85e Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 1 Mar 2026 16:56:05 +0100 Subject: [PATCH] Remove qemu_extra and qemu_extra_nvme make targets The extra disk is unconditionally attached by the regular disk logic. --- mk/qemu.mk | 9 --------- 1 file changed, 9 deletions(-) diff --git a/mk/qemu.mk b/mk/qemu.mk index 3f28a3059..1697f49fa 100644 --- a/mk/qemu.mk +++ b/mk/qemu.mk @@ -372,15 +372,6 @@ $(BUILD)/qemu_uboot.rom: qemu: qemu-deps $(QEMU) $(QEMUFLAGS) -# You probably want to use disk=no when using the *_extra targets -qemu_extra: qemu-deps - $(QEMU) $(QEMUFLAGS) \ - -drive file=$(EXTRA_DISK),format=raw - -qemu_nvme_extra: qemu-deps - $(QEMU) $(QEMUFLAGS) \ - -drive file=$(EXTRA_DISK),format=raw,if=none,id=drv1 -device nvme,drive=drv1,serial=NVME_EXTRA - #additional steps for $(DISK) are required!!! qemu_raspi: qemu-deps $(QEMU) -M raspi3b -smp 4,cores=1 \