Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Releases: intel/nemu

release-2019-08-27

27 Aug 14:57
Compare
Choose a tag to compare

release-2019-05-21

22 May 00:04
Compare
Choose a tag to compare

New release including the fix for vhost-net and hugepages.

release-2019-05-17

18 May 00:19
Compare
Choose a tag to compare
virt: Increase DIMM alignment to support huge pages

The DIMM needs to be aligned to the size of the pages that are being
used by the VMM. Increase it to 2 MiB so that it can be used with
huge pages.

Fixes: kata-containers/runtime#1698

Signed-off-by: Rob Bradford <[email protected]>

release-2019-05-07

09 May 00:23
Compare
Choose a tag to compare
virtiofsd: use memcpy() for non-NUL terminated strings

strncpy(dst, src, strlen(src)) does not NUL-terminate.  This is a common
source of bugs so gcc 9 warns about it.

Use memcpy(3) to make the code clearer and silence compiler warnings.

Signed-off-by: Stefan Hajnoczi <[email protected]>

release-2019-04-25

25 Apr 11:33
Compare
Choose a tag to compare
build: Generate and upload virtiofsd binary

Because the virtio-fs userspace daemon called virtiofsd is part of
the contrib code in NEMU, we have to also build this binary so that
it can be uploaded and made accessible through our releases.

Signed-off-by: Sebastien Boeuf <[email protected]>

Release 2019-03-11

11 Mar 17:50
Compare
Choose a tag to compare
virtio-pci: Correctly expose vector count for virtio-rng-pci

The vector count should be  1 + the number of virtqueues which is one
for virtio-rng. The other PCI devices correctly define this property and
default value. This will then enable the use of MSI-X which prevents the
kernel from falling back to legacy interrupts which we do not support.

Signed-off-by: Rob Bradford <[email protected]>

Release 2018-12-17

17 Dec 14:41
Compare
Choose a tag to compare
hw: virt: Add basic ACPI timer support

For the reduced ACPI platform implement the basic ACPI PM_TMR support.
Implement only the basic counter and not the optional interupt
triggering when the counter's carry changes value.

This is useful for implementing basic timekeeping in early firmware.

Signed-off-by: Rob Bradford <[email protected]>

Release 2018-11-29

29 Nov 13:57
Compare
Choose a tag to compare
sysfw: Bump BIOS region size

The default seabios image is greater than 128KiB so ensure that the
mapping can handle it.

Signed-off-by: Rob Bradford <[email protected]>