2016-05-10 20:05:11 +02:00
|
|
|
References: bsc#978173
|
|
|
|
The 32bit versions of the media contain a xenpae version along with
|
|
|
|
a non pae version. The sles10 sp4 32bit kernel will only boot para-
|
|
|
|
virtualized if the pae kernel is selected.
|
|
|
|
Note that sles12 and newer has no 32bit release.
|
|
|
|
|
2020-09-16 19:23:41 +02:00
|
|
|
Index: virt-manager-3.0.0/virtinst/install/urldetect.py
|
2016-05-10 20:05:11 +02:00
|
|
|
===================================================================
|
2020-09-16 19:23:41 +02:00
|
|
|
--- virt-manager-3.0.0.orig/virtinst/install/urldetect.py
|
|
|
|
+++ virt-manager-3.0.0/virtinst/install/urldetect.py
|
|
|
|
@@ -549,9 +549,14 @@ class _SuseDistro(_RHELDistro):
|
2019-02-04 19:46:20 +01:00
|
|
|
|
2018-10-30 23:00:52 +01:00
|
|
|
if self.type == "xen":
|
2016-05-10 20:05:11 +02:00
|
|
|
# Matches Opensuse > 10.2 and sles 10
|
2018-10-30 23:00:52 +01:00
|
|
|
- self._kernel_paths.append(
|
|
|
|
- ("boot/%s/vmlinuz-xen" % tree_arch,
|
|
|
|
- "boot/%s/initrd-xen" % tree_arch))
|
2018-11-27 21:17:52 +01:00
|
|
|
+ if tree_arch == "i386":
|
2018-10-30 23:00:52 +01:00
|
|
|
+ self._kernel_paths.append(
|
|
|
|
+ ("boot/%s/vmlinuz-xenpae" % tree_arch,
|
|
|
|
+ "boot/%s/initrd-xenpae" % tree_arch))
|
2018-11-27 21:17:52 +01:00
|
|
|
+ else:
|
|
|
|
+ self._kernel_paths.append(
|
|
|
|
+ ("boot/%s/vmlinuz-xen" % tree_arch,
|
|
|
|
+ "boot/%s/initrd-xen" % tree_arch))
|
2016-05-10 20:05:11 +02:00
|
|
|
|
- bsc#1140211 - VUL-1: CVE-2019-10183: virt-manager: unattended
option leaks password via command line argument
58c68764-unattended-Read-the-passwords-from-a-file.patch
51d28f04-unattended-Dont-log-user-admin-passwords.patch
- Upstream bug fix (bsc#1027942)
5312a961-virt-install-Revive-wait-0-as-alias-for-noautoconsole.patch
- Update to virt-manager 2.2.0 (fate#326786)
virt-manager-2.2.0.tar.bz2
* libvirt XML viewing and editing UI for new and existing domain, pools, volumes, networks
* virt-install: libosinfo –unattended support (Fabiano Fidêncio, Cole Robinson)
* Improve CPU model security defaults (Pavel Hrdina)
* virt-install: new –install option. Ex: virt-install –install fedora29
* virt-install: new –install kernel=,initrd=
* virt-install: –disk, –memory, –name defaults from libosinfo (Fabiano Fidêncio, Cole Robinson)
* virt-install: add device suboption aliases which consistently match libvirt XML naming
* virt-xml: new –start, –no-define options (Marc Hartmayer)
* virt-install: Add driver_queues argument to –controller (Vasudeva Kamath)
* RISC-V support (Andrea Bolognani)
* Device default improvements for non-x86 KVM (Andrea Bolognani)
* Redesigned ‘New Network’ wizard
* libguestfs inspection improvements (Pino Toscano)
* virt-install: Add support for xenbus controller (Jim Fehlig)
* cli: Add –disk wwn=,rawio= (Athina Plaskasoviti)
* cli: Add –memballoon autodeflate=,stats.period= (Athina Plaskasoviti)
* cli: Add –iothreads (Athina Plaskasoviti)
* cli: Add –numatune memory.placement (Athina Plaskasoviti)
* cli: Add –launchSecurity option (Erik Skultety)
* cli: Fill in –memorybacking options
* cli: –smartcard: support database= and certificate[0-9]*=
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=476
2019-07-03 20:19:42 +02:00
|
|
|
if str(self._os_variant).startswith(("sles11", "sled11")):
|
|
|
|
if tree_arch == "s390x":
|