Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/alsa-lib: bump version to 1.2.10
@ 2023-09-23 11:47 Bernd Kuhls
  2023-09-23 11:47 ` [Buildroot] [PATCH 2/2] package/alsa-utils: " Bernd Kuhls
  2023-09-24 10:36 ` [Buildroot] [PATCH 1/2] package/alsa-lib: " Yann E. MORIN
  0 siblings, 2 replies; 6+ messages in thread
From: Bernd Kuhls @ 2023-09-23 11:47 UTC (permalink / raw)
  To: buildroot

Removed patch which is included in this release:
https://github.com/alsa-project/alsa-lib/commit/c72bbed82513074fb5f0d474c7e88e2b4b945905

Changelog:
https://www.alsa-project.org/wiki/Changes_v1.2.9_v1.2.10#alsa-lib

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 ...ver-build-error-on-non-ELF-platforms.patch | 84 -------------------
 package/alsa-lib/alsa-lib.hash                |  2 +-
 package/alsa-lib/alsa-lib.mk                  |  2 +-
 3 files changed, 2 insertions(+), 86 deletions(-)
 delete mode 100644 package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch

diff --git a/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch b/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch
deleted file mode 100644
index 499bbb2ae4..0000000000
--- a/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 317aafb133ed797c4cd62599565a77ecc595daea Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd@kuhls.net>
-Date: Thu, 29 Jun 2023 07:57:21 +0200
-Subject: [PATCH] Fix symver build error on non-ELF platforms
-
-The following error is observed on Microblaze [1] build:
-
-    error: symver is only supported on ELF platforms
-
-due to using __attribute__((symver)) on non-ELF platform.
-
-[1] http://autobuild.buildroot.net/results/1e9/1e965d83d75615f35308440c5db044314a349357/build-end.log
-
-ac_check_attribute_symver.m4 was downloaded from
-https://github.com/smuellerDD/libkcapi/blob/master/m4/ac_check_attribute_symver.m4
-
-Upstream: https://github.com/alsa-project/alsa-lib/pull/334
-
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
- configure.ac                    |  1 +
- include/alsa-symbols.h          |  2 +-
- m4/ac_check_attribute_symver.m4 | 24 ++++++++++++++++++++++++
- 3 files changed, 26 insertions(+), 1 deletion(-)
- create mode 100644 m4/ac_check_attribute_symver.m4
-
-diff --git a/configure.ac b/configure.ac
-index 0588eec3..71ec0b15 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -46,6 +46,7 @@ dnl Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_C_INLINE
- AC_HEADER_TIME
-+AC_CHECK_ATTRIBUTE_SYMVER
- 
- dnl Checks for library functions.
- AC_PROG_GCC_TRADITIONAL
-diff --git a/include/alsa-symbols.h b/include/alsa-symbols.h
-index f8c49103..521e5956 100644
---- a/include/alsa-symbols.h
-+++ b/include/alsa-symbols.h
-@@ -29,7 +29,7 @@
- #define INTERNAL_CONCAT2_2(Pre, Post) Pre##Post
- #define INTERNAL(Name) INTERNAL_CONCAT2_2(__, Name)
- 
--#if __GNUC__ > 10
-+#if HAVE_ATTRIBUTE_SYMVER && __GNUC__ > 10
- #define symbol_version(real, name, version) \
- 	extern __typeof (real) real __attribute__((symver (#name "@" #version)))
- #define default_symbol_version(real, name, version) \
-diff --git a/m4/ac_check_attribute_symver.m4 b/m4/ac_check_attribute_symver.m4
-new file mode 100644
-index 00000000..b484c5eb
---- /dev/null
-+++ b/m4/ac_check_attribute_symver.m4
-@@ -0,0 +1,24 @@
-+dnl Check compiler support for symver function attribute
-+AC_DEFUN([AC_CHECK_ATTRIBUTE_SYMVER], [
-+	saved_CFLAGS=$CFLAGS
-+	CFLAGS="-O0 -Werror"
-+	AC_COMPILE_IFELSE(
-+		[AC_LANG_PROGRAM(
-+			[[
-+				void _test_attribute_symver(void);
-+				__attribute__((__symver__("sym@VER_1.2.3"))) void _test_attribute_symver(void) {}
-+			]],
-+			[[ 
-+				_test_attribute_symver()
-+			]]
-+		)],
-+		[
-+			AC_DEFINE([HAVE_ATTRIBUTE_SYMVER], 1, [Define to 1 if __attribute__((symver)) is supported])
-+		],
-+		[
-+			AC_DEFINE([HAVE_ATTRIBUTE_SYMVER], 0, [Define to 0 if __attribute__((symver)) is not supported])
-+		]
-+	)
-+	CFLAGS=$saved_CFLAGS
-+])
-+
--- 
-2.39.2
-
diff --git a/package/alsa-lib/alsa-lib.hash b/package/alsa-lib/alsa-lib.hash
index f6735cd540..a6d9c7dbdc 100644
--- a/package/alsa-lib/alsa-lib.hash
+++ b/package/alsa-lib/alsa-lib.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  dc9c643fdc4ccfd0572cc685858dd41e08afb583f30460b317e4188275f615b2  alsa-lib-1.2.9.tar.bz2
+sha256  c86a45a846331b1b0aa6e6be100be2a7aef92efd405cf6bac7eef8174baa920e  alsa-lib-1.2.10.tar.bz2
 sha256  32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b  COPYING
 sha256  bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced  aserver/COPYING
diff --git a/package/alsa-lib/alsa-lib.mk b/package/alsa-lib/alsa-lib.mk
index 70f4c969d5..5dfcd1e861 100644
--- a/package/alsa-lib/alsa-lib.mk
+++ b/package/alsa-lib/alsa-lib.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-ALSA_LIB_VERSION = 1.2.9
+ALSA_LIB_VERSION = 1.2.10
 ALSA_LIB_SOURCE = alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
 ALSA_LIB_SITE = https://www.alsa-project.org/files/pub/lib
 ALSA_LIB_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (aserver)
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] package/alsa-utils: bump version to 1.2.10
  2023-09-23 11:47 [Buildroot] [PATCH 1/2] package/alsa-lib: bump version to 1.2.10 Bernd Kuhls
@ 2023-09-23 11:47 ` Bernd Kuhls
  2023-09-30 12:49   ` Thomas Petazzoni via buildroot
       [not found]   ` <20230930144927.57fe951f__30987.6495086186$1696078194$gmane$org@windsurf>
  2023-09-24 10:36 ` [Buildroot] [PATCH 1/2] package/alsa-lib: " Yann E. MORIN
  1 sibling, 2 replies; 6+ messages in thread
From: Bernd Kuhls @ 2023-09-23 11:47 UTC (permalink / raw)
  To: buildroot

Updated patch due to upstream commit
https://github.com/alsa-project/alsa-utils/commit/8ed9d7607f97537ca4c8f359ee76462174c6e77e

Changelog:
https://www.alsa-project.org/wiki/Changes_v1.2.9_v1.2.10#alsa-utils

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 ...sactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch | 6 ++++--
 package/alsa-utils/alsa-utils.hash                          | 2 +-
 package/alsa-utils/alsa-utils.mk                            | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/package/alsa-utils/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch b/package/alsa-utils/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch
index 97c4729bf9..145c9da017 100644
--- a/package/alsa-utils/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch
+++ b/package/alsa-utils/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch
@@ -28,6 +28,8 @@ functions when support is not available.
 
 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
 Upstream: https://mailman.alsa-project.org/pipermail/alsa-devel/2022-July/203846.html
+[Bernd: update patch for 1.2.10]
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
 ---
  alsactl/info.c | 14 ++++++++++----
  1 file changed, 10 insertions(+), 4 deletions(-)
@@ -96,9 +98,9 @@ index 253539d..9bd72af 100644
 +#ifdef __ALSA_RAWMIDI_H
  	first = true;
  	if (err >= 0)
- 		err = rawmidi_device_list(ctl, SND_PCM_STREAM_PLAYBACK, &first);
+ 		err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_INPUT, &first);
  	if (err >= 0)
- 		err = rawmidi_device_list(ctl, SND_PCM_STREAM_CAPTURE, &first);
+ 		err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_OUTPUT, &first);
 +#endif
  
  	if (err >= 0)
diff --git a/package/alsa-utils/alsa-utils.hash b/package/alsa-utils/alsa-utils.hash
index 44cd928e45..0ace406286 100644
--- a/package/alsa-utils/alsa-utils.hash
+++ b/package/alsa-utils/alsa-utils.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  e7623d4525595f92e11ce25ee9a97f2040a14c6e4dcd027aa96e06cbce7817bd  alsa-utils-1.2.9.tar.bz2
+sha256  104b62ec7f02a7ce16ca779f4815616df1cc21933503783a9107b5944f83063a  alsa-utils-1.2.10.tar.bz2
 sha256  231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c  COPYING
diff --git a/package/alsa-utils/alsa-utils.mk b/package/alsa-utils/alsa-utils.mk
index 20fe65afe6..7487e3c2bb 100644
--- a/package/alsa-utils/alsa-utils.mk
+++ b/package/alsa-utils/alsa-utils.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-ALSA_UTILS_VERSION = 1.2.9
+ALSA_UTILS_VERSION = 1.2.10
 ALSA_UTILS_SOURCE = alsa-utils-$(ALSA_UTILS_VERSION).tar.bz2
 ALSA_UTILS_SITE = https://www.alsa-project.org/files/pub/utils
 ALSA_UTILS_LICENSE = GPL-2.0
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/alsa-lib: bump version to 1.2.10
  2023-09-23 11:47 [Buildroot] [PATCH 1/2] package/alsa-lib: bump version to 1.2.10 Bernd Kuhls
  2023-09-23 11:47 ` [Buildroot] [PATCH 2/2] package/alsa-utils: " Bernd Kuhls
@ 2023-09-24 10:36 ` Yann E. MORIN
  1 sibling, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2023-09-24 10:36 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

Bernd, All,

On 2023-09-23 13:47 +0200, Bernd Kuhls spake thusly:
> Removed patch which is included in this release:
> https://github.com/alsa-project/alsa-lib/commit/c72bbed82513074fb5f0d474c7e88e2b4b945905
> 
> Changelog:
> https://www.alsa-project.org/wiki/Changes_v1.2.9_v1.2.10#alsa-lib
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Both applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...ver-build-error-on-non-ELF-platforms.patch | 84 -------------------
>  package/alsa-lib/alsa-lib.hash                |  2 +-
>  package/alsa-lib/alsa-lib.mk                  |  2 +-
>  3 files changed, 2 insertions(+), 86 deletions(-)
>  delete mode 100644 package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch
> 
> diff --git a/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch b/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch
> deleted file mode 100644
> index 499bbb2ae4..0000000000
> --- a/package/alsa-lib/0002-Fix-symver-build-error-on-non-ELF-platforms.patch
> +++ /dev/null
> @@ -1,84 +0,0 @@
> -From 317aafb133ed797c4cd62599565a77ecc595daea Mon Sep 17 00:00:00 2001
> -From: Bernd Kuhls <bernd@kuhls.net>
> -Date: Thu, 29 Jun 2023 07:57:21 +0200
> -Subject: [PATCH] Fix symver build error on non-ELF platforms
> -
> -The following error is observed on Microblaze [1] build:
> -
> -    error: symver is only supported on ELF platforms
> -
> -due to using __attribute__((symver)) on non-ELF platform.
> -
> -[1] http://autobuild.buildroot.net/results/1e9/1e965d83d75615f35308440c5db044314a349357/build-end.log
> -
> -ac_check_attribute_symver.m4 was downloaded from
> -https://github.com/smuellerDD/libkcapi/blob/master/m4/ac_check_attribute_symver.m4
> -
> -Upstream: https://github.com/alsa-project/alsa-lib/pull/334
> -
> -Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ----
> - configure.ac                    |  1 +
> - include/alsa-symbols.h          |  2 +-
> - m4/ac_check_attribute_symver.m4 | 24 ++++++++++++++++++++++++
> - 3 files changed, 26 insertions(+), 1 deletion(-)
> - create mode 100644 m4/ac_check_attribute_symver.m4
> -
> -diff --git a/configure.ac b/configure.ac
> -index 0588eec3..71ec0b15 100644
> ---- a/configure.ac
> -+++ b/configure.ac
> -@@ -46,6 +46,7 @@ dnl Checks for typedefs, structures, and compiler characteristics.
> - AC_C_CONST
> - AC_C_INLINE
> - AC_HEADER_TIME
> -+AC_CHECK_ATTRIBUTE_SYMVER
> - 
> - dnl Checks for library functions.
> - AC_PROG_GCC_TRADITIONAL
> -diff --git a/include/alsa-symbols.h b/include/alsa-symbols.h
> -index f8c49103..521e5956 100644
> ---- a/include/alsa-symbols.h
> -+++ b/include/alsa-symbols.h
> -@@ -29,7 +29,7 @@
> - #define INTERNAL_CONCAT2_2(Pre, Post) Pre##Post
> - #define INTERNAL(Name) INTERNAL_CONCAT2_2(__, Name)
> - 
> --#if __GNUC__ > 10
> -+#if HAVE_ATTRIBUTE_SYMVER && __GNUC__ > 10
> - #define symbol_version(real, name, version) \
> - 	extern __typeof (real) real __attribute__((symver (#name "@" #version)))
> - #define default_symbol_version(real, name, version) \
> -diff --git a/m4/ac_check_attribute_symver.m4 b/m4/ac_check_attribute_symver.m4
> -new file mode 100644
> -index 00000000..b484c5eb
> ---- /dev/null
> -+++ b/m4/ac_check_attribute_symver.m4
> -@@ -0,0 +1,24 @@
> -+dnl Check compiler support for symver function attribute
> -+AC_DEFUN([AC_CHECK_ATTRIBUTE_SYMVER], [
> -+	saved_CFLAGS=$CFLAGS
> -+	CFLAGS="-O0 -Werror"
> -+	AC_COMPILE_IFELSE(
> -+		[AC_LANG_PROGRAM(
> -+			[[
> -+				void _test_attribute_symver(void);
> -+				__attribute__((__symver__("sym@VER_1.2.3"))) void _test_attribute_symver(void) {}
> -+			]],
> -+			[[ 
> -+				_test_attribute_symver()
> -+			]]
> -+		)],
> -+		[
> -+			AC_DEFINE([HAVE_ATTRIBUTE_SYMVER], 1, [Define to 1 if __attribute__((symver)) is supported])
> -+		],
> -+		[
> -+			AC_DEFINE([HAVE_ATTRIBUTE_SYMVER], 0, [Define to 0 if __attribute__((symver)) is not supported])
> -+		]
> -+	)
> -+	CFLAGS=$saved_CFLAGS
> -+])
> -+
> --- 
> -2.39.2
> -
> diff --git a/package/alsa-lib/alsa-lib.hash b/package/alsa-lib/alsa-lib.hash
> index f6735cd540..a6d9c7dbdc 100644
> --- a/package/alsa-lib/alsa-lib.hash
> +++ b/package/alsa-lib/alsa-lib.hash
> @@ -1,4 +1,4 @@
>  # Locally calculated
> -sha256  dc9c643fdc4ccfd0572cc685858dd41e08afb583f30460b317e4188275f615b2  alsa-lib-1.2.9.tar.bz2
> +sha256  c86a45a846331b1b0aa6e6be100be2a7aef92efd405cf6bac7eef8174baa920e  alsa-lib-1.2.10.tar.bz2
>  sha256  32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b  COPYING
>  sha256  bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced  aserver/COPYING
> diff --git a/package/alsa-lib/alsa-lib.mk b/package/alsa-lib/alsa-lib.mk
> index 70f4c969d5..5dfcd1e861 100644
> --- a/package/alsa-lib/alsa-lib.mk
> +++ b/package/alsa-lib/alsa-lib.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -ALSA_LIB_VERSION = 1.2.9
> +ALSA_LIB_VERSION = 1.2.10
>  ALSA_LIB_SOURCE = alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
>  ALSA_LIB_SITE = https://www.alsa-project.org/files/pub/lib
>  ALSA_LIB_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (aserver)
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] package/alsa-utils: bump version to 1.2.10
  2023-09-23 11:47 ` [Buildroot] [PATCH 2/2] package/alsa-utils: " Bernd Kuhls
@ 2023-09-30 12:49   ` Thomas Petazzoni via buildroot
       [not found]   ` <20230930144927.57fe951f__30987.6495086186$1696078194$gmane$org@windsurf>
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-09-30 12:49 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

Hello Bernd,

On Sat, 23 Sep 2023 13:47:13 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:

> Updated patch due to upstream commit
> https://github.com/alsa-project/alsa-utils/commit/8ed9d7607f97537ca4c8f359ee76462174c6e77e
> 
> Changelog:
> https://www.alsa-project.org/wiki/Changes_v1.2.9_v1.2.10#alsa-utils
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

I think there's still an unfixed issue with this version bump:

aplaymidi.c:34:10: fatal error: alsa/ump_msg.h: No such file or directory
   34 | #include <alsa/ump_msg.h>
      |          ^~~~~~~~~~~~~~~~

http://autobuild.buildroot.net/results/e26/e269f862ebade30cf870d783a1006aba8fedc129/build-end.log

Could you have a look?

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] package/alsa-utils: bump version to 1.2.10
       [not found]   ` <20230930144927.57fe951f__30987.6495086186$1696078194$gmane$org@windsurf>
@ 2023-09-30 13:01     ` Bernd Kuhls
  2023-10-13 19:48       ` Bernd Kuhls
  0 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2023-09-30 13:01 UTC (permalink / raw)
  To: buildroot

Am Sat, 30 Sep 2023 14:49:27 +0200 schrieb Thomas Petazzoni via buildroot:

> I think there's still an unfixed issue with this version bump:
> 
> aplaymidi.c:34:10: fatal error: alsa/ump_msg.h: No such file or
> directory
>    34 | #include <alsa/ump_msg.h>
>       |          ^~~~~~~~~~~~~~~~

Hi Thomas,

yes, I saw that error as well but left it for the moment due to time 
constraints. To fix it we propably should unconditionally enable 
BR2_PACKAGE_ALSA_LIB_RAWMIDI in the alsa-utils package.

This is necessary due to the, imho, weird way the buildroot package 
handles its suboptions. First all binaries are built, and we need the new 
dependency for this, but, by the ALSA_UTILS_INSTALL_TARGET_CMDS hook, only 
the enabled binaries are copied to $TARGET.

One could argue that this problem should be reported upstream so they 
provide a fix for this to avoid the new dependency, but again, time 
constraints on my side...

Otoh what about removing all these detailed suboptions in alsa-utils and 
let users, if needed, remove what they do not want by a post-build script?

Regards, Bernd

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] package/alsa-utils: bump version to 1.2.10
  2023-09-30 13:01     ` Bernd Kuhls
@ 2023-10-13 19:48       ` Bernd Kuhls
  0 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2023-10-13 19:48 UTC (permalink / raw)
  To: buildroot; +Cc: buildroot

Am Sat, 30 Sep 2023 15:01:21 +0200 schrieb Bernd Kuhls:

> yes, I saw that error as well but left it for the moment due to time
> constraints.

Hi,

finally found some time to fix the error, sent a new patch series
https://patchwork.ozlabs.org/project/buildroot/list/?series=377557
containing the previous three patches and a new one.
Hopefully all build errors will be fixed by them.

Regards, Bernd

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-10-13 19:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-23 11:47 [Buildroot] [PATCH 1/2] package/alsa-lib: bump version to 1.2.10 Bernd Kuhls
2023-09-23 11:47 ` [Buildroot] [PATCH 2/2] package/alsa-utils: " Bernd Kuhls
2023-09-30 12:49   ` Thomas Petazzoni via buildroot
     [not found]   ` <20230930144927.57fe951f__30987.6495086186$1696078194$gmane$org@windsurf>
2023-09-30 13:01     ` Bernd Kuhls
2023-10-13 19:48       ` Bernd Kuhls
2023-09-24 10:36 ` [Buildroot] [PATCH 1/2] package/alsa-lib: " Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox