All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] package/uclibc: update to 1.0.38
Date: Sun, 28 Mar 2021 10:10:02 +0200	[thread overview]
Message-ID: <20210328081002.GD24043@scaer> (raw)
In-Reply-To: <20210327154741.GA29594@waldemar-brodkorb.de>

Waldemar, All,

On 2021-03-27 16:48 +0100, Waldemar Brodkorb spake thusly:
> - fixes renameat2 issues on riscv64
> 
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...sh-Add-64-bit-time-types-from-kernel.patch | 33 -------------------
>  package/uclibc/uclibc.hash                    |  4 +--
>  package/uclibc/uclibc.mk                      |  2 +-
>  3 files changed, 3 insertions(+), 36 deletions(-)
>  delete mode 100644 package/uclibc/0001-arch-sh-Add-64-bit-time-types-from-kernel.patch
> 
> diff --git a/package/uclibc/0001-arch-sh-Add-64-bit-time-types-from-kernel.patch b/package/uclibc/0001-arch-sh-Add-64-bit-time-types-from-kernel.patch
> deleted file mode 100644
> index aec8fcda9f..0000000000
> --- a/package/uclibc/0001-arch-sh-Add-64-bit-time-types-from-kernel.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From 385f2b18ccde15f72a6e8aee4c960a5bc18481d7 Mon Sep 17 00:00:00 2001
> -From: =?UTF-8?q?Geoffrey=20Le=20Gourri=C3=A9rec?=
> - <geoffrey.legourrierec@gmail.com>
> -Date: Tue, 26 Jan 2021 20:39:36 +0100
> -Subject: [PATCH] arch/sh: Add 64-bit time types from kernel
> -
> ----
> - libc/sysdeps/linux/sh/bits/kernel_types.h | 2 ++
> - 1 file changed, 2 insertions(+)
> -
> -diff --git a/libc/sysdeps/linux/sh/bits/kernel_types.h b/libc/sysdeps/linux/sh/bits/kernel_types.h
> -index ac97261e6..90b2e66b6 100644
> ---- a/libc/sysdeps/linux/sh/bits/kernel_types.h
> -+++ b/libc/sysdeps/linux/sh/bits/kernel_types.h
> -@@ -21,6 +21,7 @@ typedef unsigned int	__kernel_size_t;
> - typedef int		__kernel_ssize_t;
> - typedef int		__kernel_ptrdiff_t;
> - typedef long		__kernel_time_t;
> -+typedef long long	__kernel_time64_t;
> - typedef long		__kernel_suseconds_t;
> - typedef long		__kernel_clock_t;
> - typedef int		__kernel_daddr_t;
> -@@ -33,6 +34,7 @@ typedef unsigned short	__kernel_old_uid_t;
> - typedef unsigned short	__kernel_old_gid_t;
> - typedef __kernel_dev_t	__kernel_old_dev_t;
> - typedef long		__kernel_long_t;
> -+typedef __kernel_long_t	__kernel_old_time_t;
> - typedef unsigned long	__kernel_ulong_t;
> - typedef long long	__kernel_loff_t;
> - 
> --- 
> -2.17.1
> -
> diff --git a/package/uclibc/uclibc.hash b/package/uclibc/uclibc.hash
> index e8bd5c5192..2935785f48 100644
> --- a/package/uclibc/uclibc.hash
> +++ b/package/uclibc/uclibc.hash
> @@ -1,4 +1,4 @@
> -# From https://downloads.uclibc-ng.org/releases/1.0.37/uClibc-ng-1.0.37.tar.xz.sha256
> -sha256  b2b815d20645cf604b99728202bf3ecb62507ce39dfa647884b4453caf86212c  uClibc-ng-1.0.37.tar.xz
> +# From https://downloads.uclibc-ng.org/releases/1.0.38/uClibc-ng-1.0.38.tar.xz.sha256
> +sha256  b1a3328330d2c94a2bec8c1436a8f15673f3a9b5895e155efc2e91d4e1882570  uClibc-ng-1.0.38.tar.xz
>  # Locally calculated
>  sha256  6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3  COPYING.LIB
> diff --git a/package/uclibc/uclibc.mk b/package/uclibc/uclibc.mk
> index 53983e852d..3d253d93bc 100644
> --- a/package/uclibc/uclibc.mk
> +++ b/package/uclibc/uclibc.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -UCLIBC_VERSION = 1.0.37
> +UCLIBC_VERSION = 1.0.38
>  UCLIBC_SOURCE = uClibc-ng-$(UCLIBC_VERSION).tar.xz
>  UCLIBC_SITE = https://downloads.uclibc-ng.org/releases/$(UCLIBC_VERSION)
>  UCLIBC_LICENSE = LGPL-2.1+
> -- 
> 2.20.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2021-03-28  8:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-27 15:48 [Buildroot] [PATCH] package/uclibc: update to 1.0.38 Waldemar Brodkorb
2021-03-28  8:10 ` Yann E. MORIN [this message]
2021-03-29 19:16 ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210328081002.GD24043@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.