all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Fiona Ebner <f.ebner@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
	Dominik Csapak <d.csapak@proxmox.com>
Subject: Re: [pve-devel] [PATCH manager 05/10] ui: qemu: make osdefaults architecture aware
Date: Thu, 29 Jan 2026 10:25:47 +0100	[thread overview]
Message-ID: <ef2dcdf4-f5ff-417f-8258-f6dacfeb76fa@proxmox.com> (raw)
In-Reply-To: <20260128123035.2576774-6-d.csapak@proxmox.com>

Am 28.01.26 um 1:29 PM schrieb Dominik Csapak:
> This enables us to have different default for different architectures,
> e.g. using 'ovmf' for 'aarch64' for everything.
> 
> The external interface should be compatible, so there is nothing
> to do for current callers.
> 
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
>  www/manager6/qemu/OSDefaults.js | 74 ++++++++++++++++++++++++++-------
>  1 file changed, 58 insertions(+), 16 deletions(-)
> 
> diff --git a/www/manager6/qemu/OSDefaults.js b/www/manager6/qemu/OSDefaults.js
> index bcebd0b3..3a707d60 100644
> --- a/www/manager6/qemu/OSDefaults.js
> +++ b/www/manager6/qemu/OSDefaults.js
> @@ -24,8 +24,17 @@ Ext.define('PVE.qemu.OSDefaults', {
>  
>          let addOS = function (settings) {
>              if (Object.hasOwn(settings, 'parent')) {
> -                let child = Ext.clone(me[settings.parent]);
> -                me[settings.pveOS] = Ext.apply(child, settings);
> +                let architectures = settings.architectures;
> +                delete settings.architectures;
> +
> +                let child = {
> +                    x86_64: Ext.apply({}, settings, me[settings.parent].x86_64),
> +                };
> +
> +                for (const arch of Object.keys(architectures ?? {})) {
> +                    child[arch] = Ext.apply({}, architectures[arch], me[settings.parent][arch]);
> +                }
> +                me[settings.pveOS] = child;
>              } else {
>                  throw 'Could not find your genitor';
>              }

---snip 8<---

> @@ -58,6 +83,17 @@ Ext.define('PVE.qemu.OSDefaults', {
>                  ide: 1,
>              },
>              networkCard: 'virtio',
> +
> +            architectures: {

Nit: I'd prefer something like architectureSpecific, what do you think?

> +                aarch64: {
> +                    busPriority: {
> +                        scsi: 3,
> +                        virtio: 2,
> +                        sata: 1,
> +                    },
> +                    networkCard: 'virtio',
> +                },
> +            },
>          });
>  
>          // recommendation from http://wiki.qemu.org/Windows2000
> @@ -73,12 +109,18 @@ Ext.define('PVE.qemu.OSDefaults', {
>              parent: 'w2k',
>          });
>  
> -        me.getDefaults = function (ostype) {
> -            if (PVE.qemu.OSDefaults[ostype]) {
> -                return PVE.qemu.OSDefaults[ostype];
> -            } else {
> -                return PVE.qemu.OSDefaults.generic;
> +        me.getDefaults = function (ostype, arch = 'x86_64') {
> +            if (!PVE.qemu.OSDefaults[ostype]) {
> +                ostype = 'generic';
>              }
> +
> +            let os = PVE.qemu.OSDefaults[ostype];
> +            if (os[arch]) {
> +                return os[arch];
> +            }
> +
> +            // default
> +            return os.x86_64;
>          };
>      },
>  });





  reply	other threads:[~2026-01-29  9:25 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-28 12:18 [pve-devel] [PATCH manager 00/10] enable qemu vm architecture selection Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 01/10] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-01-28 16:05   ` Fiona Ebner
2026-01-29  9:20     ` Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 02/10] ui: resource store: add architecture field Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 03/10] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-01-28 16:32   ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 04/10] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 05/10] ui: qemu: make osdefaults " Dominik Csapak
2026-01-29  9:25   ` Fiona Ebner [this message]
2026-01-28 12:18 ` [pve-devel] [PATCH manager 06/10] ui: qemu: make os type selector " Dominik Csapak
2026-01-29  9:41   ` Fiona Ebner
2026-01-29  9:47     ` Dominik Csapak
2026-01-29 12:09       ` Fiona Ebner
2026-01-29 10:18     ` Dominik Csapak
2026-01-29 12:10       ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 07/10] ui: qemu: make machine panels/fields " Dominik Csapak
2026-01-29 11:12   ` Fiona Ebner
2026-01-29 12:16     ` Dominik Csapak
2026-01-29 12:25       ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 08/10] ui: qemu: make bios selector " Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 09/10] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 10/10] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-01-29 13:13 ` [pve-devel] [PATCH manager 00/10] enable qemu vm architecture selection Fiona Ebner
2026-01-29 13:15   ` Fiona Ebner
2026-02-03 10:45 ` superseded: " Dominik Csapak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ef2dcdf4-f5ff-417f-8258-f6dacfeb76fa@proxmox.com \
    --to=f.ebner@proxmox.com \
    --cc=d.csapak@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal