9
0

Compare commits

...

8 Commits

Author SHA256 Message Date
c7a9c23ac6 Update to 333 2025-06-16 09:23:16 +01:00
7fae75958b Bump to 330 2025-05-07 11:45:48 +05:30
786768d6dc Patch cockpit-machines to use UEFI as default firmware 2025-03-14 14:49:42 +02:00
80147cb9cc Add bug info 2025-03-12 16:09:10 +01:00
e2f930caf9 Add node_modules.sums to .gitignore 2025-03-10 12:52:22 +00:00
eba051f64e Update to 328 2025-03-10 12:52:01 +00:00
811c1084d4 Remove qemu-spice from SLFO_16 2025-03-10 10:59:42 +02:00
5ea2cce609 Update to 327 2025-02-19 18:03:04 +00:00
9 changed files with 3285 additions and 1617 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.osc
node_modules.sums

BIN
cockpit-machines-324.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
cockpit-machines-333.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,48 @@
-------------------------------------------------------------------
Mon Jun 16 08:22:25 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to 333
* Bug fixes
* The "shareable" attribute of disks is no longer modified by Cockpit
* Virtual network interfaces can now select source mode
-------------------------------------------------------------------
Fri May 2 06:54:32 UTC 2025 - Luna D Dragon <luna.dragon@suse.com>
- update to 330
* Upgraded to Patternfly 6
- changes from 329
* Fix launching remote viewer
* Translation updates
-------------------------------------------------------------------
Fri Mar 14 12:49:21 UTC 2025 - Miika Alikirri <miika.alikirri@suse.com>
- Patch cockpit-machines to use UEFI as default firmware
* added uefi-default-firmware.patch
-------------------------------------------------------------------
Mon Mar 10 12:45:15 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to 328
* Translation updates
-------------------------------------------------------------------
Mon Mar 10 08:49:16 UTC 2025 - Miika Alikirri <miika.alikirri@suse.com>
- Remove qemu-spice from SLFO_16 (bsc#1238723)
-------------------------------------------------------------------
Wed Feb 19 18:01:04 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to 327:
* Translation updates
- Changes from 326:
* Download and install unsupported and older operating systems
- Changes from 325:
* Improve rendering of VM descriptions
* Translation updates
-------------------------------------------------------------------
Tue Dec 3 09:14:16 UTC 2024 - Luna D Dragon <luna.dragon@suse.com>

View File

@@ -17,7 +17,7 @@
Name: cockpit-machines
Version: 324
Version: 333
Release: 0
Summary: Cockpit user interface for virtual machines
License: LGPL-2.1-or-later AND MIT
@@ -29,6 +29,7 @@ Source12: update_version.sh
%include %_sourcedir/node_modules.spec.inc
Patch10: hide-docs.patch
Patch11: load-css-overrides.patch
Patch12: uefi-default-firmware.patch
BuildArch: noarch
BuildRequires: appstream-glib
BuildRequires: make
@@ -40,7 +41,9 @@ Requires: libvirt-daemon-kvm
%endif
Requires: libvirt-client
Requires: libvirt-dbus >= 1.2.0
%if 0%{?suse_version} != 1600
Requires: qemu-spice
%endif
Requires: virt-install
# Optional components
Recommends: libosinfo

BIN
node_modules.obscpio (Stored with Git LFS)

Binary file not shown.

File diff suppressed because it is too large Load Diff

3772
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,41 @@
From a580aa1ee6c24aab29fc7710b82187c15f21e6ec Mon Sep 17 00:00:00 2001
From: Miika Alikirri <miika.alikirri@suse.com>
Date: Thu, 6 Mar 2025 09:25:08 +0200
Subject: Use UEFI as default firmware instead of bios
---
src/components/vm/overview/firmware.jsx | 4 ++--
src/components/vm/overview/helpers.jsx | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/components/vm/overview/firmware.jsx b/src/components/vm/overview/firmware.jsx
index e99c893a..f04dc023 100644
--- a/src/components/vm/overview/firmware.jsx
+++ b/src/components/vm/overview/firmware.jsx
@@ -32,8 +32,8 @@ import { supportsUefiXml, labelForFirmwarePath } from './helpers.jsx';
const _ = cockpit.gettext;
-const xmlToState = value => value || 'bios';
-const stateToXml = value => value == 'bios' ? null : value;
+const xmlToState = value => value || 'efi';
+const stateToXml = value => value == 'efi' ? null : value;
class FirmwareModal extends React.Component {
static contextType = DialogsContext;
diff --git a/src/components/vm/overview/helpers.jsx b/src/components/vm/overview/helpers.jsx
index e0702ac6..582225fd 100644
--- a/src/components/vm/overview/helpers.jsx
+++ b/src/components/vm/overview/helpers.jsx
@@ -69,7 +69,7 @@ export function labelForFirmwarePath(path, guest_arch) {
};
if (!path) {
if (["i686", "x86_64"].includes(guest_arch))
- return "bios";
+ return "efi";
else
return "unknown";
} else {
--
2.48.1