Received: from mail-wm1-f48.google.com (mail-wm1-f48.google.com [209.85.128.48]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 943B4782B9A for <~alpine/users@lists.alpinelinux.org>; Sat, 16 Jan 2021 14:55:31 +0000 (UTC) Received: by mail-wm1-f48.google.com with SMTP id y187so10095713wmd.3 for <~alpine/users@lists.alpinelinux.org>; Sat, 16 Jan 2021 06:55:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version:content-disposition; bh=yLMyEtey8gVjZIYYSIYzgfKNsbwUJcp6lRpreqkB8aw=; b=LAn1gI+/nEuQLRa1/wXpOTSaZKwKpkGNE6lgN3dMccnXrNJqp5meas5qpfpuGYYG0w X08uiJK/HbQODRpu2YIR+SK1EWQCYgtPk5pgQ24koAoFjVGgPziFk9sYXuhmTHioUh4Y oq/lT7z7e9aHaPWx2Hmpl0PwrJs507hjcNgtu/Y6sxLcnXfb7f4X71paWCoox2oqNnj/ 70h0tPGJ7n4/y/iCd6dgXGGSEwo2fZevWrFWW6s3HaY3zJ75weeC4jKOn13PyFu3fBJj 0uGUW9lTkPsKVlB2kQmRLc3hYQUF4ZMWasfu6G0MtnFO4NR1Ra++fAVNWVIiuIrU32MX RdDQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition; bh=yLMyEtey8gVjZIYYSIYzgfKNsbwUJcp6lRpreqkB8aw=; b=DQsMotJ7GoHjwLnlIXvCaLTowtAl6/N+n106MINdtTBtl+lkQFLLlBRGCr+hjeUDUZ eFSuVp98yMpfKUG42n8imVVpECfPAMYe0BxUwdN4eGec51MbfVOF//JQIKLfHg9AIe3K DZi+MtTHMDjsLP9Hzo3YXkQiVMOxRV5nQ2XXlBG3Z+ZwLQW1Zn8Za04i1FZuvFdGx54A njp6vU6+YUe4WEeMUW95CrzTsLiiAG6eWmUDRuzIa6tfgrmPywmip4jYeM3g0JVekCxN Sb9MbSFfSEXDCEyfSZBUq9ox9kA4jUyXHOGBtn+TKpf/BML6gWvcWlOTI0NmAGdcEJD7 FRJQ== X-Gm-Message-State: AOAM5328OsXzU5nguMaIXHByZqGeEcySsfTE40v53BZ3wCy03r4rOxFE bqb8AZeehuPNjKJVSxkTfAIP+vUqB5A= X-Google-Smtp-Source: ABdhPJwE5DKzQClGLWt2AyD5JbRTEcx2GNXF0dAeZ0dIv8R84dyF2n8LFcW3bakc6XKY86Oz68AN4Q== X-Received: by 2002:a05:600c:40ca:: with SMTP id m10mr13273098wmh.54.1610808930779; Sat, 16 Jan 2021 06:55:30 -0800 (PST) Received: from localhost (cpc90666-cove15-2-0-cust187.3-1.cable.virginm.net. [81.105.86.188]) by smtp.gmail.com with ESMTPSA id c16sm18790866wrx.51.2021.01.16.06.55.30 for <~alpine/users@lists.alpinelinux.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 16 Jan 2021 06:55:30 -0800 (PST) Date: Sat, 16 Jan 2021 14:55:29 +0000 From: doa379 To: ~alpine/users@lists.alpinelinux.org Subject: Loading Alpine guest as a VM in Bhyve Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I'm trying to run Alpine as a guest VM under Bhyve. The Alpine ISO I'm using is with the -virt suffix. I've run it under KVM and it loads successfully. I'm trying to run it using Bhyve but the boot sequence seems to stall during mounting boot media. These are last few lines of output to the console: Alpine Init 3.4.5-r3 * Loading boot drivers: [ 47.770381] loop: module loaded [ 47.781958] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 47.817714] ACPI: bus type USB registered [ 47.821307] usbcore: registered new interface driver usbfs [ 47.825793] usbcore: registered new interface driver hub [ 47.830224] usbcore: registered new device driver usb [ 47.844285] usbcore: registered new interface driver usb-storage ok. * Mounting boot media: [ 47.943875] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver [ 47.950140] virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver [ 48.028324] virtio_blk virtio1: [vda] 2097152 512-byte logical blocks (1.07 GB/1.00 GiB) //...waiting...// At the Alpine bootstrapper the Linux kernel parameters are these: linux /boot/vmlinuz-virt modules=loop,squashfs,sd-mod,usb-storage,sr-mod console=tty0 console=ttyS0,115200" initrd /boot/initramfs-virt After mounting boot media the sequence should continue to reach a login prompt. I've run the hypervisor over ssh as well as on the tty, the results are the same. I would appreciate any suggestions..