Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4
@ 2021-10-16 21:53 Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 2/5] package/libuci: bump version to 4b3db11 Peter Seiderer
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-16 21:53 UTC (permalink / raw)
  To: buildroot; +Cc: Sergio Prado, Samuel Martin

Changelog:

  - a0dbcf8 tests: add blob-buffer overflow test
  - b36a3a9 blob: fix exceeding maximum buffer length
  - b8abed7 utils.h: add fallthrough macro
  - b14c468 json_script: fix unannotated fall-through warning
  - d716ac4 list.h: add a few missing iterator macros

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/libubox/libubox.hash | 2 +-
 package/libubox/libubox.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libubox/libubox.hash b/package/libubox/libubox.hash
index 94a071d80d..2775427485 100644
--- a/package/libubox/libubox.hash
+++ b/package/libubox/libubox.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256  c6bac8baa7525b2d35eb22edeb5722c098370794d00e8859ef1a0bdfd8716151  libubox-551d75b5662cccd0466b990d58136bdf799a804d-br1.tar.gz
+sha256  54f65299439dab4be8f203588bcefd9b60052ae87d12c6d012f6278a2a111b4e  libubox-d716ac4bc4236031d4c3cc1ed362b502e20e3787-br1.tar.gz
diff --git a/package/libubox/libubox.mk b/package/libubox/libubox.mk
index 20da5c2ec2..90ba57a883 100644
--- a/package/libubox/libubox.mk
+++ b/package/libubox/libubox.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBUBOX_VERSION = 551d75b5662cccd0466b990d58136bdf799a804d
+LIBUBOX_VERSION = d716ac4bc4236031d4c3cc1ed362b502e20e3787
 LIBUBOX_SITE = https://git.openwrt.org/project/libubox.git
 LIBUBOX_SITE_METHOD = git
 LIBUBOX_LICENSE = ISC, BSD-3-Clause
-- 
2.33.0

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

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

* [Buildroot] [PATCH v1 2/5] package/libuci: bump version to 4b3db11
  2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
@ 2021-10-16 21:53 ` Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 3/5] package/ubus: bump version to a72457b Peter Seiderer
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-16 21:53 UTC (permalink / raw)
  To: buildroot; +Cc: Sergio Prado, Samuel Martin

Changelog:

  - 4b3db11 cli: add option for changing save path

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/libuci/libuci.hash | 4 ++--
 package/libuci/libuci.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libuci/libuci.hash b/package/libuci/libuci.hash
index 54bdb023aa..87e539d41b 100644
--- a/package/libuci/libuci.hash
+++ b/package/libuci/libuci.hash
@@ -1,4 +1,4 @@
 # Locally computed
-sha256  76ef826df2961420cd7a4f1702bef06c37563d9807a2d8e84557963aab21ac80  libuci-52bbc99f69ea6f67b6fe264f424dac91bde5016c-br1.tar.gz
-sha256  53672dbbd32466fe6c7ad7cb35b54f666f3f1b41273cd3bd00a42054608aa512  cli.c
+sha256  4b4e3ef9c9f51c02a1985c63ff0e8fc1f3aafdf24491247a4dc33c993c3fa1ea  libuci-4b3db1179747b6a6779029407984bacef851325c-br1.tar.gz
+sha256  39e1cc18a36172fb80d9b37f0af77d78ae935bd8a020978a7895d9e76a24e112  cli.c
 sha256  69d4eea4de19d27014f3d6ed723081b4039700bfd73cd0a5e39e2c4f19a58c66  libuci.c
diff --git a/package/libuci/libuci.mk b/package/libuci/libuci.mk
index 4515e3f21c..81e87aa5be 100644
--- a/package/libuci/libuci.mk
+++ b/package/libuci/libuci.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBUCI_VERSION = 52bbc99f69ea6f67b6fe264f424dac91bde5016c
+LIBUCI_VERSION = 4b3db1179747b6a6779029407984bacef851325c
 LIBUCI_SITE = https://git.openwrt.org/project/uci.git
 LIBUCI_SITE_METHOD = git
 LIBUCI_LICENSE = LGPL-2.1, GPL-2.0 (tools)
-- 
2.33.0

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

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

* [Buildroot] [PATCH v1 3/5] package/ubus: bump version to a72457b
  2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 2/5] package/libuci: bump version to 4b3db11 Peter Seiderer
@ 2021-10-16 21:53 ` Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 4/5] package/uhttpd: bump version to 15346de Peter Seiderer
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-16 21:53 UTC (permalink / raw)
  To: buildroot; +Cc: Sergio Prado, Samuel Martin

Changelog:

  - 2537be0 cmake: add a possibility to set library version
  - 4becbd6 ubusd: convert tx_queue to linked list
  - c736e47 ubusd: add per-client tx queue limit
  - a8cf678 ubusd: protect against too-short messages
  - 4fc532c ubusd: fix tx_queue linked list usage
  - b743a33 ubusd: log ACL init errors
  - 2099bb3 libubus: use list_empty/list_first_entry in ubus_process_pending_msg
  - ef03848 libubus: process pending messages in data handler if stack depth is 0
  - a72457b libubus: increase stack depth for processing obj msgs

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/ubus/ubus.hash | 2 +-
 package/ubus/ubus.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/ubus/ubus.hash b/package/ubus/ubus.hash
index 15e67b53ed..2b7181e5d2 100644
--- a/package/ubus/ubus.hash
+++ b/package/ubus/ubus.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  0d2abb7212ad1ac0ac641d52f62e212bb090a1bbaeae975a78f44ab08d3e3c23  ubus-d1d9ddf98d39b0bdc055060fb962335439445690-br1.tar.gz
+sha256  275d184006f2f60c9b0172d8fd0ccc8952f182960c0d3d0945be640873c1bef6  ubus-a72457b61df045d3c499a6211362b751710590d7-br1.tar.gz
 sha256  a3caa6c0e90c87b7c97c2ac3d0c0d416082ef777215faec2e9b24ea6e68f6988  ubusd_acl.h
diff --git a/package/ubus/ubus.mk b/package/ubus/ubus.mk
index 09668f7dd2..fa856fb36a 100644
--- a/package/ubus/ubus.mk
+++ b/package/ubus/ubus.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-UBUS_VERSION = d1d9ddf98d39b0bdc055060fb962335439445690
+UBUS_VERSION = a72457b61df045d3c499a6211362b751710590d7
 UBUS_SITE = https://git.openwrt.org/project/ubus.git
 UBUS_SITE_METHOD = git
 
-- 
2.33.0

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

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

* [Buildroot] [PATCH v1 4/5] package/uhttpd: bump version to 15346de
  2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 2/5] package/libuci: bump version to 4b3db11 Peter Seiderer
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 3/5] package/ubus: bump version to a72457b Peter Seiderer
@ 2021-10-16 21:53 ` Peter Seiderer
  2021-10-16 21:54 ` [Buildroot] [PATCH v1 5/5] package/uqmi: new package Peter Seiderer
  2021-10-18 19:28 ` [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Thomas Petazzoni
  4 siblings, 0 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-16 21:53 UTC (permalink / raw)
  To: buildroot; +Cc: Sergio Prado, Samuel Martin

Changelog:

  - 15346de client: Always close connection with request body in case of error

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/uhttpd/uhttpd.hash | 2 +-
 package/uhttpd/uhttpd.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/uhttpd/uhttpd.hash b/package/uhttpd/uhttpd.hash
index 6f8b4a60f8..1e37b2b251 100644
--- a/package/uhttpd/uhttpd.hash
+++ b/package/uhttpd/uhttpd.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  8a537a377c8dc1abda147a1e3feb3fe3e3633a9d30e4e37d378cc6309dace2f0  uhttpd-f53a63999784bcb7dc513e221f3f25dd3de2f35e-br1.tar.gz
+sha256  9ae10aaf6642b214e0a4ca47d6fd9693ac4b88d61e7d6446f0f0feb3a28ca510  uhttpd-15346de8d3ba422002496526ee24c62a3601ab8c-br1.tar.gz
 sha256  ce1803f83f776cc88661e303fede0e5ff52faf1d9f74508fadbecf7705b4c84d  uhttpd.h
diff --git a/package/uhttpd/uhttpd.mk b/package/uhttpd/uhttpd.mk
index 355a266d6b..ba8e13ccb8 100644
--- a/package/uhttpd/uhttpd.mk
+++ b/package/uhttpd/uhttpd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-UHTTPD_VERSION = f53a63999784bcb7dc513e221f3f25dd3de2f35e
+UHTTPD_VERSION = 15346de8d3ba422002496526ee24c62a3601ab8c
 UHTTPD_SITE = https://git.openwrt.org/project/uhttpd.git
 UHTTPD_SITE_METHOD = git
 UHTTPD_LICENSE = ISC
-- 
2.33.0

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

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

* [Buildroot] [PATCH v1 5/5] package/uqmi: new package
  2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
                   ` (2 preceding siblings ...)
  2021-10-16 21:53 ` [Buildroot] [PATCH v1 4/5] package/uhttpd: bump version to 15346de Peter Seiderer
@ 2021-10-16 21:54 ` Peter Seiderer
  2021-10-17  6:05   ` Peter Seiderer
  2021-10-18 19:33   ` Thomas Petazzoni via buildroot
  2021-10-18 19:28 ` [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Thomas Petazzoni
  4 siblings, 2 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-16 21:54 UTC (permalink / raw)
  To: buildroot; +Cc: Sergio Prado, Samuel Martin

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 DEVELOPERS             |  1 +
 package/Config.in      |  1 +
 package/uqmi/Config.in | 14 ++++++++++++++
 package/uqmi/uqmi.hash |  3 +++
 package/uqmi/uqmi.mk   | 15 +++++++++++++++
 5 files changed, 34 insertions(+)
 create mode 100644 package/uqmi/Config.in
 create mode 100644 package/uqmi/uqmi.hash
 create mode 100644 package/uqmi/uqmi.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 19f6d95270..09b7258cb7 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2176,6 +2176,7 @@ F:	package/racehound/
 F:	package/redir/
 F:	package/rtl8812au-aircrack-ng/
 F:	package/uredir/
+F:	package/uqmi/
 F:	package/wayland-utils/
 
 N:	Peter Thompson <peter.macleod.thompson@gmail.com>
diff --git a/package/Config.in b/package/Config.in
index 48f365d773..92026e85c2 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2343,6 +2343,7 @@ endif
 	source "package/uhttpd/Config.in"
 	source "package/ulogd/Config.in"
 	source "package/unbound/Config.in"
+	source "package/uqmi/Config.in"
 	source "package/uredir/Config.in"
 	source "package/ushare/Config.in"
 	source "package/ussp-push/Config.in"
diff --git a/package/uqmi/Config.in b/package/uqmi/Config.in
new file mode 100644
index 0000000000..47b19e04d4
--- /dev/null
+++ b/package/uqmi/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_UQMI
+	bool "uqmi"
+	depends on !BR2_STATIC_LIBS # libubox
+	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
+	select BR2_PACKAGE_JSON_C
+	select BR2_PACKAGE_LIBUBOX
+	help
+	  This command line tool originates from the OpenWrt project
+	  to configure LTE modem in QMI mode for WAN connection.
+
+	  https://git.openwrt.org/project/uqmi.git
+
+comment "uqmi needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/uqmi/uqmi.hash b/package/uqmi/uqmi.hash
new file mode 100644
index 0000000000..2db5d330e2
--- /dev/null
+++ b/package/uqmi/uqmi.hash
@@ -0,0 +1,3 @@
+# Locally calculated
+sha256  aae6a72791da8f58012303ba3bfeeb613e74597cbebfb9e7c2d9125e6f256799  uqmi-0a19b5b77140465c29e2afa7d611fe93abc9672f-br1.tar.gz
+sha256  a69bf44dbff15d727578d2069a654d60e9034c5e2cc3e199a012e72afef6c259  main.c
diff --git a/package/uqmi/uqmi.mk b/package/uqmi/uqmi.mk
new file mode 100644
index 0000000000..02544f5637
--- /dev/null
+++ b/package/uqmi/uqmi.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# uqmi
+#
+################################################################################
+
+UQMI_VERSION = 0a19b5b77140465c29e2afa7d611fe93abc9672f
+UQMI_SITE = https://git.openwrt.org/project/uqmi.git
+UQMI_SITE_METHOD = git
+UQMI_LICENSE = LGPL-2.0+
+UQMI_LICENSE_FILES = main.c
+UQMI_INSTALL_STAGING = YES
+UQMI_DEPENDENCIES = json-c libubox
+
+$(eval $(cmake-package))
-- 
2.33.0

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

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

* Re: [Buildroot] [PATCH v1 5/5] package/uqmi: new package
  2021-10-16 21:54 ` [Buildroot] [PATCH v1 5/5] package/uqmi: new package Peter Seiderer
@ 2021-10-17  6:05   ` Peter Seiderer
  2021-10-18 19:33   ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 8+ messages in thread
From: Peter Seiderer @ 2021-10-17  6:05 UTC (permalink / raw)
  To: buildroot; +Cc: Samuel Martin, Sergio Prado

Hello *,

On Sat, 16 Oct 2021 23:54:00 +0200, Peter Seiderer <ps.report@gmx.net> wrote:

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  DEVELOPERS             |  1 +
>  package/Config.in      |  1 +
>  package/uqmi/Config.in | 14 ++++++++++++++
>  package/uqmi/uqmi.hash |  3 +++
>  package/uqmi/uqmi.mk   | 15 +++++++++++++++
>  5 files changed, 34 insertions(+)
>  create mode 100644 package/uqmi/Config.in
>  create mode 100644 package/uqmi/uqmi.hash
>  create mode 100644 package/uqmi/uqmi.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 19f6d95270..09b7258cb7 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -2176,6 +2176,7 @@ F:	package/racehound/
>  F:	package/redir/
>  F:	package/rtl8812au-aircrack-ng/
>  F:	package/uredir/
> +F:	package/uqmi/
>  F:	package/wayland-utils/
>
>  N:	Peter Thompson <peter.macleod.thompson@gmail.com>
> diff --git a/package/Config.in b/package/Config.in
> index 48f365d773..92026e85c2 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -2343,6 +2343,7 @@ endif
>  	source "package/uhttpd/Config.in"
>  	source "package/ulogd/Config.in"
>  	source "package/unbound/Config.in"
> +	source "package/uqmi/Config.in"
>  	source "package/uredir/Config.in"
>  	source "package/ushare/Config.in"
>  	source "package/ussp-push/Config.in"
> diff --git a/package/uqmi/Config.in b/package/uqmi/Config.in
> new file mode 100644
> index 0000000000..47b19e04d4
> --- /dev/null
> +++ b/package/uqmi/Config.in
> @@ -0,0 +1,14 @@
> +config BR2_PACKAGE_UQMI
> +	bool "uqmi"
> +	depends on !BR2_STATIC_LIBS # libubox
> +	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
> +	select BR2_PACKAGE_JSON_C
> +	select BR2_PACKAGE_LIBUBOX
> +	help
> +	  This command line tool originates from the OpenWrt project
> +	  to configure LTE modem in QMI mode for WAN connection.
> +
> +	  https://git.openwrt.org/project/uqmi.git
> +
> +comment "uqmi needs a toolchain w/ dynamic library"
> +	depends on BR2_STATIC_LIBS
> diff --git a/package/uqmi/uqmi.hash b/package/uqmi/uqmi.hash
> new file mode 100644
> index 0000000000..2db5d330e2
> --- /dev/null
> +++ b/package/uqmi/uqmi.hash
> @@ -0,0 +1,3 @@
> +# Locally calculated
> +sha256  aae6a72791da8f58012303ba3bfeeb613e74597cbebfb9e7c2d9125e6f256799  uqmi-0a19b5b77140465c29e2afa7d611fe93abc9672f-br1.tar.gz
> +sha256  a69bf44dbff15d727578d2069a654d60e9034c5e2cc3e199a012e72afef6c259  main.c
> diff --git a/package/uqmi/uqmi.mk b/package/uqmi/uqmi.mk
> new file mode 100644
> index 0000000000..02544f5637
> --- /dev/null
> +++ b/package/uqmi/uqmi.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# uqmi
> +#
> +################################################################################
> +
> +UQMI_VERSION = 0a19b5b77140465c29e2afa7d611fe93abc9672f
> +UQMI_SITE = https://git.openwrt.org/project/uqmi.git
> +UQMI_SITE_METHOD = git
> +UQMI_LICENSE = LGPL-2.0+
> +UQMI_LICENSE_FILES = main.c
> +UQMI_INSTALL_STAGING = YES

Install staging is nonsense and should be removed..., will send
v2 soon....

Regards,
Peter

> +UQMI_DEPENDENCIES = json-c libubox
> +
> +$(eval $(cmake-package))

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

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

* Re: [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4
  2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
                   ` (3 preceding siblings ...)
  2021-10-16 21:54 ` [Buildroot] [PATCH v1 5/5] package/uqmi: new package Peter Seiderer
@ 2021-10-18 19:28 ` Thomas Petazzoni
  4 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2021-10-18 19:28 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Samuel Martin, Sergio Prado, buildroot

On Sat, 16 Oct 2021 23:53:56 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> Changelog:
> 
>   - a0dbcf8 tests: add blob-buffer overflow test
>   - b36a3a9 blob: fix exceeding maximum buffer length
>   - b8abed7 utils.h: add fallthrough macro
>   - b14c468 json_script: fix unannotated fall-through warning
>   - d716ac4 list.h: add a few missing iterator macros
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/libubox/libubox.hash | 2 +-
>  package/libubox/libubox.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Entire series applied to master. I'll reply separately to PATCH 5/5.

Thanks!

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

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

* Re: [Buildroot] [PATCH v1 5/5] package/uqmi: new package
  2021-10-16 21:54 ` [Buildroot] [PATCH v1 5/5] package/uqmi: new package Peter Seiderer
  2021-10-17  6:05   ` Peter Seiderer
@ 2021-10-18 19:33   ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 8+ messages in thread
From: Thomas Petazzoni via buildroot @ 2021-10-18 19:33 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: Samuel Martin, Sergio Prado, buildroot

On Sat, 16 Oct 2021 23:54:00 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> diff --git a/package/uqmi/Config.in b/package/uqmi/Config.in
> new file mode 100644
> index 0000000000..47b19e04d4
> --- /dev/null
> +++ b/package/uqmi/Config.in
> @@ -0,0 +1,14 @@
> +config BR2_PACKAGE_UQMI
> +	bool "uqmi"
> +	depends on !BR2_STATIC_LIBS # libubox
> +	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
> +	select BR2_PACKAGE_JSON_C
> +	select BR2_PACKAGE_LIBUBOX
> +	help
> +	  This command line tool originates from the OpenWrt project
> +	  to configure LTE modem in QMI mode for WAN connection.
> +
> +	  https://git.openwrt.org/project/uqmi.git
> +
> +comment "uqmi needs a toolchain w/ dynamic library"

You had forgotten:

	depends on BR2_TOOLCHAIN_HAS_SYNC_4

here.

> +	depends on BR2_STATIC_LIBS
> +UQMI_VERSION = 0a19b5b77140465c29e2afa7d611fe93abc9672f
> +UQMI_SITE = https://git.openwrt.org/project/uqmi.git
> +UQMI_SITE_METHOD = git
> +UQMI_LICENSE = LGPL-2.0+
> +UQMI_LICENSE_FILES = main.c
> +UQMI_INSTALL_STAGING = YES

I dropped this line, as you suggested.

Applied with those two changes. 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] 8+ messages in thread

end of thread, other threads:[~2021-10-18 19:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-16 21:53 [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Peter Seiderer
2021-10-16 21:53 ` [Buildroot] [PATCH v1 2/5] package/libuci: bump version to 4b3db11 Peter Seiderer
2021-10-16 21:53 ` [Buildroot] [PATCH v1 3/5] package/ubus: bump version to a72457b Peter Seiderer
2021-10-16 21:53 ` [Buildroot] [PATCH v1 4/5] package/uhttpd: bump version to 15346de Peter Seiderer
2021-10-16 21:54 ` [Buildroot] [PATCH v1 5/5] package/uqmi: new package Peter Seiderer
2021-10-17  6:05   ` Peter Seiderer
2021-10-18 19:33   ` Thomas Petazzoni via buildroot
2021-10-18 19:28 ` [Buildroot] [PATCH v1 1/5] package/libubox: bump version to d716ac4 Thomas Petazzoni

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