All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers
@ 2020-04-20 17:06 Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 2/4] layer.conf: set compatibility for warrior Andrea Adami
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Andrea Adami @ 2020-04-20 17:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrea Adami

The Y2038 changes broke the build for older 32bit devices using
older kernels.

As seen on: https://sourceware.org/glibc/wiki/Y2038ProofnessDesign

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 .../zaurusd/zaurusd/add_64bit_time_t.patch    | 43 +++++++++++++++++++
 recipes-bsp/zaurusd/zaurusd_git.bb            |  3 +-
 2 files changed, 45 insertions(+), 1 deletion(-)
 create mode 100644 recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch

diff --git a/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
new file mode 100644
index 0000000..5f9587a
--- /dev/null
+++ b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
@@ -0,0 +1,43 @@
+From d15b20fd9e8927db5dc4303f2e6c11cfa8d6fe95 Mon Sep 17 00:00:00 2001
+From: Andrea Adami <andrea.adami@gmail.com>
+Date: Mon, 20 Apr 2020 16:21:22 +0200
+Subject: [PATCH] tskeys.c: add support for 64bit time_t
+
+Upgrade the recipe to cope with the 64-bit time changes introduced in 4.16
+
+Fix:
+
+| tskeys.c: In function 'press_key':
+| tskeys.c:141:4: error: 'struct input_event' has no member named 'time'
+|   141 |  ev.time.tv_sec = time(0);
+|       |    ^
+| tskeys.c:142:4: error: 'struct input_event' has no member named 'time'
+|   142 |  ev.time.tv_usec = 0;
+|       |    ^
+
+Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
+---
+ apps/tskeys/tskeys.c | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/apps/tskeys/tskeys.c b/apps/tskeys/tskeys.c
+index 264dfb7..36e3bfd 100644
+--- a/apps/tskeys/tskeys.c
++++ b/apps/tskeys/tskeys.c
+@@ -138,8 +138,13 @@ void press_key(int fd, int key, int pressed)
+ 	struct input_event ev;
+ 	int r;
+ 
++#if !defined(__USE_TIME_BITS64)
+ 	ev.time.tv_sec = time(0);
+ 	ev.time.tv_usec = 0;
++#else
++	ev.input_event_sec = time(0);
++	ev.input_event_usec = 0;
++#endif
+ 	ev.type = EV_KEY;
+ 	ev.code = key;
+ 	ev.value = pressed;
+-- 
+2.17.1
+
diff --git a/recipes-bsp/zaurusd/zaurusd_git.bb b/recipes-bsp/zaurusd/zaurusd_git.bb
index d69805b..1f8e40b 100644
--- a/recipes-bsp/zaurusd/zaurusd_git.bb
+++ b/recipes-bsp/zaurusd/zaurusd_git.bb
@@ -24,7 +24,8 @@ SRC_URI = "git://git.yoctoproject.org/${BPN} \
            file://01-check-toggle-portait \
            file://use-ts-symlink-instead-of-hardcoding.diff \
            file://0001-zaurusd-add-support-for-collie.patch \
-           file://allow-newer-tslib.patch"
+           file://allow-newer-tslib.patch \
+           file://add_64bit_time_t.patch"
 
 
 S = "${WORKDIR}/git"
-- 
2.17.1


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

* [meta-handheld][PATCH 2/4] layer.conf: set compatibility for warrior
  2020-04-20 17:06 [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Andrea Adami
@ 2020-04-20 17:06 ` Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 3/4] layer.conf: set compatibility for zeus Andrea Adami
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Andrea Adami @ 2020-04-20 17:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrea Adami

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 1e0069d..0702f69 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -18,5 +18,5 @@ BBFILE_PRIORITY_meta-handheld = "7"
 
 LAYERDEPENDS_meta-handheld = "core meta-initramfs openembedded-layer"
 
-LAYERSERIES_COMPAT_meta-handheld = "sumo thud"
+LAYERSERIES_COMPAT_meta-handheld = "sumo thud warrior"
 
-- 
2.17.1


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

* [meta-handheld][PATCH 3/4] layer.conf: set compatibility for zeus
  2020-04-20 17:06 [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 2/4] layer.conf: set compatibility for warrior Andrea Adami
@ 2020-04-20 17:06 ` Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 4/4] layer.conf: set compatibility for dunfell Andrea Adami
  2020-04-20 17:43 ` [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Khem Raj
  3 siblings, 0 replies; 7+ messages in thread
From: Andrea Adami @ 2020-04-20 17:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrea Adami

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 0702f69..31fcb54 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -18,5 +18,5 @@ BBFILE_PRIORITY_meta-handheld = "7"
 
 LAYERDEPENDS_meta-handheld = "core meta-initramfs openembedded-layer"
 
-LAYERSERIES_COMPAT_meta-handheld = "sumo thud warrior"
+LAYERSERIES_COMPAT_meta-handheld = "sumo thud warrior zeus"
 
-- 
2.17.1


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

* [meta-handheld][PATCH 4/4] layer.conf: set compatibility for dunfell
  2020-04-20 17:06 [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 2/4] layer.conf: set compatibility for warrior Andrea Adami
  2020-04-20 17:06 ` [meta-handheld][PATCH 3/4] layer.conf: set compatibility for zeus Andrea Adami
@ 2020-04-20 17:06 ` Andrea Adami
  2020-04-20 17:43 ` [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Khem Raj
  3 siblings, 0 replies; 7+ messages in thread
From: Andrea Adami @ 2020-04-20 17:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrea Adami

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 31fcb54..d1cb281 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -18,5 +18,5 @@ BBFILE_PRIORITY_meta-handheld = "7"
 
 LAYERDEPENDS_meta-handheld = "core meta-initramfs openembedded-layer"
 
-LAYERSERIES_COMPAT_meta-handheld = "sumo thud warrior zeus"
+LAYERSERIES_COMPAT_meta-handheld = "sumo thud warrior zeus dunfell"
 
-- 
2.17.1


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

* Re: [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers
  2020-04-20 17:06 [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Andrea Adami
                   ` (2 preceding siblings ...)
  2020-04-20 17:06 ` [meta-handheld][PATCH 4/4] layer.conf: set compatibility for dunfell Andrea Adami
@ 2020-04-20 17:43 ` Khem Raj
  2020-04-20 18:26   ` Andrea Adami
  3 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2020-04-20 17:43 UTC (permalink / raw)
  To: Andrea Adami; +Cc: openembeded-devel

On Mon, Apr 20, 2020 at 10:07 AM Andrea Adami <andrea.adami@gmail.com> wrote:
>
> The Y2038 changes broke the build for older 32bit devices using
> older kernels.
>
> As seen on: https://sourceware.org/glibc/wiki/Y2038ProofnessDesign
>
> Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> ---
>  .../zaurusd/zaurusd/add_64bit_time_t.patch    | 43 +++++++++++++++++++
>  recipes-bsp/zaurusd/zaurusd_git.bb            |  3 +-
>  2 files changed, 45 insertions(+), 1 deletion(-)
>  create mode 100644 recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
>
> diff --git a/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> new file mode 100644
> index 0000000..5f9587a
> --- /dev/null
> +++ b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> @@ -0,0 +1,43 @@
> +From d15b20fd9e8927db5dc4303f2e6c11cfa8d6fe95 Mon Sep 17 00:00:00 2001
> +From: Andrea Adami <andrea.adami@gmail.com>
> +Date: Mon, 20 Apr 2020 16:21:22 +0200
> +Subject: [PATCH] tskeys.c: add support for 64bit time_t
> +
> +Upgrade the recipe to cope with the 64-bit time changes introduced in 4.16
> +
> +Fix:
> +
> +| tskeys.c: In function 'press_key':
> +| tskeys.c:141:4: error: 'struct input_event' has no member named 'time'
> +|   141 |  ev.time.tv_sec = time(0);
> +|       |    ^
> +| tskeys.c:142:4: error: 'struct input_event' has no member named 'time'
> +|   142 |  ev.time.tv_usec = 0;
> +|       |    ^
> +
> +Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> +---
> + apps/tskeys/tskeys.c | 5 +++++
> + 1 file changed, 5 insertions(+)
> +
> +diff --git a/apps/tskeys/tskeys.c b/apps/tskeys/tskeys.c
> +index 264dfb7..36e3bfd 100644
> +--- a/apps/tskeys/tskeys.c
> ++++ b/apps/tskeys/tskeys.c
> +@@ -138,8 +138,13 @@ void press_key(int fd, int key, int pressed)
> +       struct input_event ev;
> +       int r;
> +
> ++#if !defined(__USE_TIME_BITS64)
> +       ev.time.tv_sec = time(0);
> +       ev.time.tv_usec = 0;
> ++#else
> ++      ev.input_event_sec = time(0);
> ++      ev.input_event_usec = 0;
> ++#endif

does this work with musl ?

> +       ev.type = EV_KEY;
> +       ev.code = key;
> +       ev.value = pressed;
> +--
> +2.17.1
> +
> diff --git a/recipes-bsp/zaurusd/zaurusd_git.bb b/recipes-bsp/zaurusd/zaurusd_git.bb
> index d69805b..1f8e40b 100644
> --- a/recipes-bsp/zaurusd/zaurusd_git.bb
> +++ b/recipes-bsp/zaurusd/zaurusd_git.bb
> @@ -24,7 +24,8 @@ SRC_URI = "git://git.yoctoproject.org/${BPN} \
>             file://01-check-toggle-portait \
>             file://use-ts-symlink-instead-of-hardcoding.diff \
>             file://0001-zaurusd-add-support-for-collie.patch \
> -           file://allow-newer-tslib.patch"
> +           file://allow-newer-tslib.patch \
> +           file://add_64bit_time_t.patch"
>
>
>  S = "${WORKDIR}/git"
> --
> 2.17.1
>
> 

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

* Re: [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers
  2020-04-20 17:43 ` [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Khem Raj
@ 2020-04-20 18:26   ` Andrea Adami
  2020-04-20 18:32     ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Andrea Adami @ 2020-04-20 18:26 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Mon, Apr 20, 2020 at 7:44 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> On Mon, Apr 20, 2020 at 10:07 AM Andrea Adami <andrea.adami@gmail.com> wrote:
> >
> > The Y2038 changes broke the build for older 32bit devices using
> > older kernels.
> >
> > As seen on: https://sourceware.org/glibc/wiki/Y2038ProofnessDesign
> >
> > Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> > ---
> >  .../zaurusd/zaurusd/add_64bit_time_t.patch    | 43 +++++++++++++++++++
> >  recipes-bsp/zaurusd/zaurusd_git.bb            |  3 +-
> >  2 files changed, 45 insertions(+), 1 deletion(-)
> >  create mode 100644 recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> >
> > diff --git a/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> > new file mode 100644
> > index 0000000..5f9587a
> > --- /dev/null
> > +++ b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> > @@ -0,0 +1,43 @@
> > +From d15b20fd9e8927db5dc4303f2e6c11cfa8d6fe95 Mon Sep 17 00:00:00 2001
> > +From: Andrea Adami <andrea.adami@gmail.com>
> > +Date: Mon, 20 Apr 2020 16:21:22 +0200
> > +Subject: [PATCH] tskeys.c: add support for 64bit time_t
> > +
> > +Upgrade the recipe to cope with the 64-bit time changes introduced in 4.16
> > +
> > +Fix:
> > +
> > +| tskeys.c: In function 'press_key':
> > +| tskeys.c:141:4: error: 'struct input_event' has no member named 'time'
> > +|   141 |  ev.time.tv_sec = time(0);
> > +|       |    ^
> > +| tskeys.c:142:4: error: 'struct input_event' has no member named 'time'
> > +|   142 |  ev.time.tv_usec = 0;
> > +|       |    ^
> > +
> > +Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> > +---
> > + apps/tskeys/tskeys.c | 5 +++++
> > + 1 file changed, 5 insertions(+)
> > +
> > +diff --git a/apps/tskeys/tskeys.c b/apps/tskeys/tskeys.c
> > +index 264dfb7..36e3bfd 100644
> > +--- a/apps/tskeys/tskeys.c
> > ++++ b/apps/tskeys/tskeys.c
> > +@@ -138,8 +138,13 @@ void press_key(int fd, int key, int pressed)
> > +       struct input_event ev;
> > +       int r;
> > +
> > ++#if !defined(__USE_TIME_BITS64)
> > +       ev.time.tv_sec = time(0);
> > +       ev.time.tv_usec = 0;
> > ++#else
> > ++      ev.input_event_sec = time(0);
> > ++      ev.input_event_usec = 0;
> > ++#endif
>
> does this work with musl ?
>


Yes, actually I tested it on musl first.

Build Configuration:
BB_VERSION           = "1.46.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "ubuntu-18.04"
TARGET_SYS           = "arm-oe-linux-musleabi"
MACHINE              = "spitz"
DISTRO               = "nodistro"
DISTRO_VERSION       = "nodistro.0"
TUNE_FEATURES        = "arm armv5 thumb dsp"
TARGET_FPU           = "soft"
meta                 = "master-next:b450b0a2f5df27c4ea903ae9c5f6f5b96b9ddfc3"
meta-oe              = "master-next:205440e40f9a2d37a4f48391b03673a4aa042982"
meta-handheld        = "master:a876aaa33317d388aa2e865f665fe6cc58d500a7"




> > +       ev.type = EV_KEY;
> > +       ev.code = key;
> > +       ev.value = pressed;
> > +--
> > +2.17.1
> > +
> > diff --git a/recipes-bsp/zaurusd/zaurusd_git.bb b/recipes-bsp/zaurusd/zaurusd_git.bb
> > index d69805b..1f8e40b 100644
> > --- a/recipes-bsp/zaurusd/zaurusd_git.bb
> > +++ b/recipes-bsp/zaurusd/zaurusd_git.bb
> > @@ -24,7 +24,8 @@ SRC_URI = "git://git.yoctoproject.org/${BPN} \
> >             file://01-check-toggle-portait \
> >             file://use-ts-symlink-instead-of-hardcoding.diff \
> >             file://0001-zaurusd-add-support-for-collie.patch \
> > -           file://allow-newer-tslib.patch"
> > +           file://allow-newer-tslib.patch \
> > +           file://add_64bit_time_t.patch"
> >
> >
> >  S = "${WORKDIR}/git"
> > --
> > 2.17.1
> >
> > 

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

* Re: [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers
  2020-04-20 18:26   ` Andrea Adami
@ 2020-04-20 18:32     ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2020-04-20 18:32 UTC (permalink / raw)
  To: Andrea Adami; +Cc: openembeded-devel

[-- Attachment #1: Type: text/plain, Size: 4166 bytes --]

Thanks!

On Mon, Apr 20, 2020 at 11:26 AM Andrea Adami <andrea.adami@gmail.com>
wrote:

> On Mon, Apr 20, 2020 at 7:44 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > On Mon, Apr 20, 2020 at 10:07 AM Andrea Adami <andrea.adami@gmail.com>
> wrote:
> > >
> > > The Y2038 changes broke the build for older 32bit devices using
> > > older kernels.
> > >
> > > As seen on: https://sourceware.org/glibc/wiki/Y2038ProofnessDesign
> > >
> > > Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> > > ---
> > >  .../zaurusd/zaurusd/add_64bit_time_t.patch    | 43 +++++++++++++++++++
> > >  recipes-bsp/zaurusd/zaurusd_git.bb            |  3 +-
> > >  2 files changed, 45 insertions(+), 1 deletion(-)
> > >  create mode 100644 recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> > >
> > > diff --git a/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> > > new file mode 100644
> > > index 0000000..5f9587a
> > > --- /dev/null
> > > +++ b/recipes-bsp/zaurusd/zaurusd/add_64bit_time_t.patch
> > > @@ -0,0 +1,43 @@
> > > +From d15b20fd9e8927db5dc4303f2e6c11cfa8d6fe95 Mon Sep 17 00:00:00 2001
> > > +From: Andrea Adami <andrea.adami@gmail.com>
> > > +Date: Mon, 20 Apr 2020 16:21:22 +0200
> > > +Subject: [PATCH] tskeys.c: add support for 64bit time_t
> > > +
> > > +Upgrade the recipe to cope with the 64-bit time changes introduced in
> 4.16
> > > +
> > > +Fix:
> > > +
> > > +| tskeys.c: In function 'press_key':
> > > +| tskeys.c:141:4: error: 'struct input_event' has no member named
> 'time'
> > > +|   141 |  ev.time.tv_sec = time(0);
> > > +|       |    ^
> > > +| tskeys.c:142:4: error: 'struct input_event' has no member named
> 'time'
> > > +|   142 |  ev.time.tv_usec = 0;
> > > +|       |    ^
> > > +
> > > +Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
> > > +---
> > > + apps/tskeys/tskeys.c | 5 +++++
> > > + 1 file changed, 5 insertions(+)
> > > +
> > > +diff --git a/apps/tskeys/tskeys.c b/apps/tskeys/tskeys.c
> > > +index 264dfb7..36e3bfd 100644
> > > +--- a/apps/tskeys/tskeys.c
> > > ++++ b/apps/tskeys/tskeys.c
> > > +@@ -138,8 +138,13 @@ void press_key(int fd, int key, int pressed)
> > > +       struct input_event ev;
> > > +       int r;
> > > +
> > > ++#if !defined(__USE_TIME_BITS64)
> > > +       ev.time.tv_sec = time(0);
> > > +       ev.time.tv_usec = 0;
> > > ++#else
> > > ++      ev.input_event_sec = time(0);
> > > ++      ev.input_event_usec = 0;
> > > ++#endif
> >
> > does this work with musl ?
> >
>
>
> Yes, actually I tested it on musl first.
>
> Build Configuration:
> BB_VERSION           = "1.46.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "ubuntu-18.04"
> TARGET_SYS           = "arm-oe-linux-musleabi"
> MACHINE              = "spitz"
> DISTRO               = "nodistro"
> DISTRO_VERSION       = "nodistro.0"
> TUNE_FEATURES        = "arm armv5 thumb dsp"
> TARGET_FPU           = "soft"
> meta                 =
> "master-next:b450b0a2f5df27c4ea903ae9c5f6f5b96b9ddfc3"
> meta-oe              =
> "master-next:205440e40f9a2d37a4f48391b03673a4aa042982"
> meta-handheld        = "master:a876aaa33317d388aa2e865f665fe6cc58d500a7"
>
>
>
>
> > > +       ev.type = EV_KEY;
> > > +       ev.code = key;
> > > +       ev.value = pressed;
> > > +--
> > > +2.17.1
> > > +
> > > diff --git a/recipes-bsp/zaurusd/zaurusd_git.bb b/recipes-bsp/zaurusd/
> zaurusd_git.bb
> > > index d69805b..1f8e40b 100644
> > > --- a/recipes-bsp/zaurusd/zaurusd_git.bb
> > > +++ b/recipes-bsp/zaurusd/zaurusd_git.bb
> > > @@ -24,7 +24,8 @@ SRC_URI = "git://git.yoctoproject.org/${BPN}
> <http://git.yoctoproject.org/$%7BBPN%7D> \
> > >             file://01-check-toggle-portait \
> > >             file://use-ts-symlink-instead-of-hardcoding.diff \
> > >             file://0001-zaurusd-add-support-for-collie.patch \
> > > -           file://allow-newer-tslib.patch"
> > > +           file://allow-newer-tslib.patch \
> > > +           file://add_64bit_time_t.patch"
> > >
> > >
> > >  S = "${WORKDIR}/git"
> > > --
> > > 2.17.1
> > >
> > > 
>

[-- Attachment #2: Type: text/html, Size: 6288 bytes --]

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

end of thread, other threads:[~2020-04-20 18:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-20 17:06 [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Andrea Adami
2020-04-20 17:06 ` [meta-handheld][PATCH 2/4] layer.conf: set compatibility for warrior Andrea Adami
2020-04-20 17:06 ` [meta-handheld][PATCH 3/4] layer.conf: set compatibility for zeus Andrea Adami
2020-04-20 17:06 ` [meta-handheld][PATCH 4/4] layer.conf: set compatibility for dunfell Andrea Adami
2020-04-20 17:43 ` [oe] [meta-handheld][PATCH 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers Khem Raj
2020-04-20 18:26   ` Andrea Adami
2020-04-20 18:32     ` Khem Raj

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.