Package Details: xen-stubdom 4.20.0-2

Git Clone URL: https://aur.archlinux.org/xen.git (read-only, click to copy)
Package Base: xen
Description: Xen hypervisor stubdom files
Upstream URL: https://xenproject.org/
Keywords: hypervisor virtualization xen
Licenses: GPL2
Submitter: sergej
Maintainer: Refutationalist
Last Packager: Refutationalist
Votes: 184
Popularity: 0.071098
First Submitted: 2009-11-09 11:22 (UTC)
Last Updated: 2025-03-13 08:19 (UTC)

Required by (3)

Sources (13)

Pinned Comments

Refutationalist commented on 2025-03-12 12:06 (UTC) (edited on 2025-03-13 08:23 (UTC) by Refutationalist)

We've moved to the newly-stable 4.20.0 branch. There are also other changes:

  • stubdom is fixed by disabling the vtmp and vtpmmgr components. This gets rid of a few source files and our remaining patches.
  • Debug files are only removed if the debug option is not set in makepkg.cfg (or the PKGBUILD itself)
  • pygrub has been removed
  • optdepends are adjusted for the upcoming xen-grub split package for the various Xen flavored builds.

If you're still using pygrub note that it is deprecated. The solution is to build PV grub instead, which used to be in AUR but is now missing. I am asking a couple questions on the mailing list, and I intend to put my current build of xen-grub (which supersedes xen-pvhgrub) on AUR as soon as possible. If you need to build it before that occurs, you can find it in my PKGBUILD repo.

EDIT: 4.20.0-2 adds support for the xen-edk2 package, which has a fixed UEFI for xen

Latest Comments

« First ‹ Previous 1 .. 74 75 76 77 78 79 80 81 82 83 84 .. 101 Next › Last »

kantras commented on 2013-01-11 05:54 (UTC)

Ahh, ok - when I built it last time, glibc hadn't been upgraded to 2.17, which is why I didn't see this issue at first when I build that PKGBUILD; glibc 2.17 makes some key changes to things such as not implicitly loading the rt lib (hence why you have to load it explicitly.) It built fine once I also included the patch mentioned by nbhs below (also at http://lists.xen.org/archives/html/xen-devel/2012-12/msg00429.html ) I uploaded the gdbsx-glibc-2.17.patch and PKGBUILD files I used to http://www.kantras.info/xen/

kantras commented on 2013-01-11 04:51 (UTC)

Hmm, its been building fine for me, even before the last added patch. Are you using 32 bit or 64 bit? What type of CPU? Any custom flags set? How much memory? I might be able to help if I can reproduce the issue on one of my test machines.

<deleted-account> commented on 2013-01-11 03:52 (UTC)

Xen 4.1 compiled fine, 4.2 does not work. It would be better returned to the repository version 4.1 :-(

fernando_ccs17 commented on 2013-01-10 17:41 (UTC)

gcc -O1 -fno-omit-frame-pointer -m64 -g -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -D__XEN_TOOLS__ -MMD -MF .xg_main.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -fno-optimize-sibling-calls -Werror -Wmissing-prototypes -I/home/fernando/Desktop/xen/src/xen-4.2.1/tools/debugger/gdbsx/xg/../../../../tools/include -c -o xg_main.o xg_main.c xg_main.c: In function ‘_domctl_hcall’: xg_main.c:181:52: error: ‘ulong’ undeclared (first use in this function) xg_main.c:181:52: note: each undeclared identifier is reported only once for each function it appears in xg_main.c: In function ‘_check_hyp’: xg_main.c:221:52: error: ‘ulong’ undeclared (first use in this function) make[4]: ** [xg_main.o] Erro 1 make[4]: Saindo do diretório `/home/fernando/Desktop/xen/src/xen-4.2.1/tools/debugger/gdbsx/xg' make[3]: ** [all] Erro 2 make[3]: Saindo do diretório `/home/fernando/Desktop/xen/src/xen-4.2.1/tools/debugger/gdbsx' make[2]: ** [subdir-install-debugger/gdbsx] Erro 2 make[2]: Saindo do diretório `/home/fernando/Desktop/xen/src/xen-4.2.1/tools' make[1]: ** [subdirs-install] Erro 2 make[1]: Saindo do diretório `/home/fernando/Desktop/xen/src/xen-4.2.1/tools' make: ** [install-tools] Erro 2

<deleted-account> commented on 2013-01-10 02:01 (UTC)

--- a/tools/debugger/gdbsx/xg/xg_main.c +++ b/tools/debugger/gdbsx/xg/xg_main.c @@ -34,6 +34,7 @@ * XGTRC(): generic trace utility */ +#include <sys/types.h> #include <stdio.h> #include <stddef.h> #include <stdarg.h>

luolimao commented on 2013-01-10 00:23 (UTC)

There's a new error [1] now, but I added the patch at least. [1] https://gist.github.com/4498279

<deleted-account> commented on 2013-01-09 18:06 (UTC)

this patch works for me https://github.com/slacks42/alpine-apk/blob/master/xen-git/timer-add-lrt-lm.patch

itsizzy commented on 2013-01-08 13:30 (UTC)

I've tried every combination I could think of, CFLAGS, LIBS, PREPEND_* with librt and lrt, with and without the dash before the word. And it seems I can't get it running. Please someone with more experience with gcc/ld fix this..

luolimao commented on 2013-01-08 10:37 (UTC)

Hmm, yeah. I tried using export, and xen's configure told me to use PREPEND_LIB, PREPEND_INCLUDES, etc. but none of those worked with += -librt or += -lrt. I don't really understand gcc's build process at all (even post-googling), so unless someone else has a solution...