2025-01-05 17:59:55 by Roland Illig | Files touched by this commit (1) |
Log message:
xentools415: remove no-op .for loop from the package Makefile
The list of items for the .for loop includes the shell commands, due to
the line continuation from the line above, making the body of the .for
loop empty.
The filenames from the .for loop didn't match their counterparts on the
docs/misc directory.
|
2024-04-03 00:01:24 by Manuel Bouyer | Files touched by this commit (6) |
Log message:
xentools415, xentools418: fix bug in BSD symbol table support for i386:
When computing the size of the ELF symbol table, the code use
sizeof(Elf64_Shdr) or sizeof(Elf32_Shdr) depending on the kernel being
loaded. But later when computing offsets, the code uses
sizeof(struct elf_sym_header) which contains a union of both Shdr. This result
in an overflow of 64 bytes. Fortunably the code checks the size being copied
with the allocated size and silently ignores the copy if there isn't enough
space. Fortunably as well, the allocated size is rounded up to the next page
boundary, so most of the time there is enough space. Unfortunably, the official
i386 GENERIC kernel from the 10.0 release has the right size to trigger
this bug.
Bump PKGREVISION.
|
2023-11-20 22:23:04 by Manuel Bouyer | Files touched by this commit (1) |
Log message:
Per discussion on tech-pkg@, bump PKGREVISION again. The pullup of the fixes
to the stable branch will give a package with the same PKGREVISION but with
an older python depend.
|
2023-11-15 16:59:36 by Manuel Bouyer | Files touched by this commit (12) |
Log message:
xen*415: apply upstream patches for Xen Security Advisory
XSA-439, XSA-440, XSA-442, XSA-443, XSA-444, XSA-445, XSA-446
bump PKGREVISIONs
|
2023-08-24 12:27:09 by Manuel Bouyer | Files touched by this commit (9) | |
Log message:
Update xenkernel415, xentools415 and xenstoretools to Xen 4.15.5
Chnages since 4.15.4:
- includes patches for Xen Security Advisory up to XSA-436 (inclued)
- update seabios to 1.16.0
- better support on some hardware
Complete changes here:
https://xenproject.org/downloads/xen-project-archives/xen-project-4-15-series/xen-project-4-15-5/
|
2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247) |
Log message:
*: recursive bump for Python 3.11 as new default
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2022-12-29 00:45:02 by Greg Troxel | Files touched by this commit (1) |
Log message:
xentools415: allow on NetBSD 10
|
2022-12-15 14:24:44 by Manuel Bouyer | Files touched by this commit (6) |
Log message:
Update xenkernel415, xentools415 and xenstoretools to 4.15.4
Main changes from 4.15.3:
includes all security fixes up to and including XSA-422
other changes are minor improvements and fixes.
Complete changelog can be found at:
https://xenproject.org/downloads/xen-project-archives/xen-project-4-15-series/xen-project-4-15-4/
|
2022-10-08 13:05:58 by Manuel Bouyer | Files touched by this commit (1) |
Log message:
Relax ONLY_FOR_PLATFORM and accept 9.99.*
Quotin Greg Troxel:
I think we should just allow 9.99. While really it's 9.99.64 and up,
pkgsrc is only expected to work on current current, and ancient current
is no longer of interest.
issue on 9.99.100 reported by oskar@fessel.org on port-xen@
|