All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH next] trinity: bump version to fix a build failure using Linux 3.19 headers
@ 2015-02-22 21:29 Fabio Porcedda
  2015-02-23 11:28 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Fabio Porcedda @ 2015-02-22 21:29 UTC (permalink / raw)
  To: buildroot

bump to the following trinity repository commit:

kvm: Add ifdef around IA64 ioctls.
Fix build error.

  CC	ioctls/kvm.o
In file included from ioctls/kvm.c:8:0:
ioctls/kvm.c:115:8: error: ?KVM_IA64_VCPU_GET_STACK? undeclared here (not in a function)
  IOCTL(KVM_IA64_VCPU_GET_STACK),
        ^
include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
  { .request = _request, .name = #_request, }
               ^
ioctls/kvm.c:116:8: error: ?KVM_IA64_VCPU_SET_STACK? undeclared here (not in a function)
  IOCTL(KVM_IA64_VCPU_SET_STACK),
        ^
include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
  { .request = _request, .name = #_request, }

IA64 ioctls were removed in Linux 3.19.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
---
 package/trinity/trinity.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/trinity/trinity.mk b/package/trinity/trinity.mk
index 52805e0..5f8a707 100644
--- a/package/trinity/trinity.mk
+++ b/package/trinity/trinity.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TRINITY_VERSION = 5d2dfe9727eb9c8dc44c31e95968e8d85284ffcc
+TRINITY_VERSION = c8c41f99500b5854c2061a08962b8908c872d852
 TRINITY_SITE = $(call github,kernelslacker,trinity,$(TRINITY_VERSION))
 TRINITY_LICENSE = GPLv2
 TRINITY_LICENSE_FILES = COPYING
-- 
2.3.0

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

* [Buildroot] [PATCH next] trinity: bump version to fix a build failure using Linux 3.19 headers
  2015-02-22 21:29 [Buildroot] [PATCH next] trinity: bump version to fix a build failure using Linux 3.19 headers Fabio Porcedda
@ 2015-02-23 11:28 ` Thomas Petazzoni
  2015-02-24 10:56   ` Fabio Porcedda
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2015-02-23 11:28 UTC (permalink / raw)
  To: buildroot

Dear Fabio Porcedda,

On Sun, 22 Feb 2015 22:29:33 +0100, Fabio Porcedda wrote:
> bump to the following trinity repository commit:
> 
> kvm: Add ifdef around IA64 ioctls.
> Fix build error.
> 
>   CC	ioctls/kvm.o
> In file included from ioctls/kvm.c:8:0:
> ioctls/kvm.c:115:8: error: ?KVM_IA64_VCPU_GET_STACK? undeclared here (not in a function)
>   IOCTL(KVM_IA64_VCPU_GET_STACK),
>         ^
> include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
>   { .request = _request, .name = #_request, }
>                ^
> ioctls/kvm.c:116:8: error: ?KVM_IA64_VCPU_SET_STACK? undeclared here (not in a function)
>   IOCTL(KVM_IA64_VCPU_SET_STACK),
>         ^
> include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
>   { .request = _request, .name = #_request, }
> 
> IA64 ioctls were removed in Linux 3.19.
> 
> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>

Applied to next, thanks.

I initially wondered if we shouldn't apply this to master, but since it
happens only with 3.19 kernel headers, and such option has only been
added in next, I indeed decided to apply this patch only to the next
branch.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH next] trinity: bump version to fix a build failure using Linux 3.19 headers
  2015-02-23 11:28 ` Thomas Petazzoni
@ 2015-02-24 10:56   ` Fabio Porcedda
  0 siblings, 0 replies; 3+ messages in thread
From: Fabio Porcedda @ 2015-02-24 10:56 UTC (permalink / raw)
  To: buildroot

On Mon, Feb 23, 2015 at 12:28 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Fabio Porcedda,
>
> On Sun, 22 Feb 2015 22:29:33 +0100, Fabio Porcedda wrote:
>> bump to the following trinity repository commit:
>>
>> kvm: Add ifdef around IA64 ioctls.
>> Fix build error.
>>
>>   CC  ioctls/kvm.o
>> In file included from ioctls/kvm.c:8:0:
>> ioctls/kvm.c:115:8: error: ?KVM_IA64_VCPU_GET_STACK? undeclared here (not in a function)
>>   IOCTL(KVM_IA64_VCPU_GET_STACK),
>>         ^
>> include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
>>   { .request = _request, .name = #_request, }
>>                ^
>> ioctls/kvm.c:116:8: error: ?KVM_IA64_VCPU_SET_STACK? undeclared here (not in a function)
>>   IOCTL(KVM_IA64_VCPU_SET_STACK),
>>         ^
>> include/ioctls.h:53:15: note: in definition of macro ?IOCTL?
>>   { .request = _request, .name = #_request, }
>>
>> IA64 ioctls were removed in Linux 3.19.
>>
>> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
>
> Applied to next, thanks.
>
> I initially wondered if we shouldn't apply this to master, but since it
> happens only with 3.19 kernel headers, and such option has only been
> added in next, I indeed decided to apply this patch only to the next
> branch.

I've submitted the patch to next for the same reason.

Thanks
-- 
Fabio Porcedda

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

end of thread, other threads:[~2015-02-24 10:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-22 21:29 [Buildroot] [PATCH next] trinity: bump version to fix a build failure using Linux 3.19 headers Fabio Porcedda
2015-02-23 11:28 ` Thomas Petazzoni
2015-02-24 10:56   ` Fabio Porcedda

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.