All of lore.kernel.org
 help / color / mirror / Atom feed
* stubdom --disable-pv-grub has not effect
@ 2018-04-01 18:19 Olaf Hering
  2018-04-01 18:29 ` Wei Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Olaf Hering @ 2018-04-01 18:19 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 311 bytes --]

Since the source of pv-grub is not ready for todays compilers, and we have pvgrub2, I tried to disable it with --enable-stubdom --disable-pv-grub. But the toplevel Makefile does "make install-grub" unconditionally. I'm not familiar with stubdom. Is pvgrub a hard requirement for every stubdom variant?

Olaf

[-- Attachment #1.2: Digitale Signatur von OpenPGP --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 157 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: stubdom --disable-pv-grub has not effect
  2018-04-01 18:19 stubdom --disable-pv-grub has not effect Olaf Hering
@ 2018-04-01 18:29 ` Wei Liu
  2018-04-02  9:40   ` Olaf Hering
  0 siblings, 1 reply; 5+ messages in thread
From: Wei Liu @ 2018-04-01 18:29 UTC (permalink / raw)
  To: Olaf Hering; +Cc: Wei Liu, xen-devel

On Sun, Apr 01, 2018 at 08:19:25PM +0200, Olaf Hering wrote:
> Since the source of pv-grub is not ready for todays compilers, and we
> have pvgrub2, I tried to disable it with --enable-stubdom
> --disable-pv-grub. But the toplevel Makefile does "make install-grub"
> unconditionally. I'm not familiar with stubdom. Is pvgrub a hard
> requirement for every stubdom variant?

No. That's a bug in our build system.

Wei.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: stubdom --disable-pv-grub has not effect
  2018-04-01 18:29 ` Wei Liu
@ 2018-04-02  9:40   ` Olaf Hering
  2018-04-02  9:44     ` Wei Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Olaf Hering @ 2018-04-02  9:40 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 300 bytes --]

On Sun, Apr 01, Wei Liu wrote:

> No. That's a bug in our build system.

Thanks. For some reason only gcc48-4.8.3.rpm from SLE_11 is affected,
not gcc43-4.3.4.rpm from SLE_11 nor gcc48-4.8.5.rpm from SLE_12.
This fixes my packages for the time being:
sed -i '/ stubdom install-grub/d' Makefile

Olaf

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 157 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: stubdom --disable-pv-grub has not effect
  2018-04-02  9:40   ` Olaf Hering
@ 2018-04-02  9:44     ` Wei Liu
  2018-04-02  9:50       ` Olaf Hering
  0 siblings, 1 reply; 5+ messages in thread
From: Wei Liu @ 2018-04-02  9:44 UTC (permalink / raw)
  To: Olaf Hering; +Cc: Wei Liu, xen-devel

On Mon, Apr 02, 2018 at 11:40:54AM +0200, Olaf Hering wrote:
> On Sun, Apr 01, Wei Liu wrote:
> 
> > No. That's a bug in our build system.
> 
> Thanks. For some reason only gcc48-4.8.3.rpm from SLE_11 is affected,
> not gcc43-4.3.4.rpm from SLE_11 nor gcc48-4.8.5.rpm from SLE_12.
> This fixes my packages for the time being:
> sed -i '/ stubdom install-grub/d' Makefile

I suppose you hit some sort of compile error because pv-grub has rotten?

The proper fix is, of course, make sure stubdom is really disabled. I
will see if I can get around to it at some point.

Wei.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: stubdom --disable-pv-grub has not effect
  2018-04-02  9:44     ` Wei Liu
@ 2018-04-02  9:50       ` Olaf Hering
  0 siblings, 0 replies; 5+ messages in thread
From: Olaf Hering @ 2018-04-02  9:50 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 408 bytes --]

Am Mon, 2 Apr 2018 10:44:23 +0100
schrieb Wei Liu <wei.liu2@citrix.com>:

> I suppose you hit some sort of compile error because pv-grub has rotten?

A post-build check scans the build log for warnings. Some of them are seen as fatal, and the otherwise successful build is marked as FAIL, no rpm package is provided. Since I have no need for pvgrub, disabling it seems like the obvious choice.

Olaf

[-- Attachment #1.2: Digitale Signatur von OpenPGP --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 157 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-04-02  9:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-01 18:19 stubdom --disable-pv-grub has not effect Olaf Hering
2018-04-01 18:29 ` Wei Liu
2018-04-02  9:40   ` Olaf Hering
2018-04-02  9:44     ` Wei Liu
2018-04-02  9:50       ` Olaf Hering

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.