Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0
@ 2023-11-02 21:07 Fabrice Fontaine
  2023-11-03  7:11 ` Herve Codina via buildroot
  2023-11-03  9:32 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-11-02 21:07 UTC (permalink / raw)
  To: buildroot; +Cc: Hervé Codina, Fabrice Fontaine

This bump will fix the following build failure with kernel >= 6.6 thanks
to
https://github.com/ikwzm/dtbocfg/commit/36e9dad7bdedc43b9c63aa48c3fc48ffc4d2b2dd:

/home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c: In function ‘dtbocfg_overlay_item_create’:
/home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c:68:19: error: too few arguments to function ‘of_overlay_fdt_apply’
   68 |         ret_val = of_overlay_fdt_apply(overlay->dtbo,overlay->dtbo_size, &ovcs_id);
      |                   ^~~~~~~~~~~~~~~~~~~~

https://github.com/ikwzm/dtbocfg/compare/v0.0.9...v0.1.0

Fixes:
 - http://autobuild.buildroot.org/results/e5bae7fa5558801c39f53a4a15ac550c3855322e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/dtbocfg/dtbocfg.hash | 2 +-
 package/dtbocfg/dtbocfg.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/dtbocfg/dtbocfg.hash b/package/dtbocfg/dtbocfg.hash
index 7db69f9e59..df1817f7aa 100644
--- a/package/dtbocfg/dtbocfg.hash
+++ b/package/dtbocfg/dtbocfg.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  faa53aefd7f7636c65e2b56bec223d2bc7676354e3ad9b5c1691aca349b9bbb8  dtbocfg-0.0.9.tar.gz
+sha256  f1667de4250b744bb4a11dfc5f85d8b1f960da7d396c9f230f5b4d12224f524f  dtbocfg-0.1.0.tar.gz
 sha256  e57cb9f2ed607cd95bf1b64371325c505c1ac8fe640a8c9933e7fe7637a38567  LICENSE
diff --git a/package/dtbocfg/dtbocfg.mk b/package/dtbocfg/dtbocfg.mk
index 68beb1a45e..df5f692bc1 100644
--- a/package/dtbocfg/dtbocfg.mk
+++ b/package/dtbocfg/dtbocfg.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DTBOCFG_VERSION = 0.0.9
+DTBOCFG_VERSION = 0.1.0
 DTBOCFG_SITE = $(call github,ikwzm,dtbocfg,v$(DTBOCFG_VERSION))
 DTBOCFG_LICENSE = BSD-2-Clause
 DTBOCFG_LICENSE_FILES = LICENSE
-- 
2.42.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0
  2023-11-02 21:07 [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0 Fabrice Fontaine
@ 2023-11-03  7:11 ` Herve Codina via buildroot
  2023-11-03  9:32 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Herve Codina via buildroot @ 2023-11-03  7:11 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Thu,  2 Nov 2023 22:07:04 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> This bump will fix the following build failure with kernel >= 6.6 thanks
> to
> https://github.com/ikwzm/dtbocfg/commit/36e9dad7bdedc43b9c63aa48c3fc48ffc4d2b2dd:
> 
> /home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c: In function ‘dtbocfg_overlay_item_create’:
> /home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c:68:19: error: too few arguments to function ‘of_overlay_fdt_apply’
>    68 |         ret_val = of_overlay_fdt_apply(overlay->dtbo,overlay->dtbo_size, &ovcs_id);
>       |                   ^~~~~~~~~~~~~~~~~~~~
> 
> https://github.com/ikwzm/dtbocfg/compare/v0.0.9...v0.1.0
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/e5bae7fa5558801c39f53a4a15ac550c3855322e
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/dtbocfg/dtbocfg.hash | 2 +-
>  package/dtbocfg/dtbocfg.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Acked-by: Herve Codina <herve.codina@bootlin.com>

Regards,
Hervé
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0
  2023-11-02 21:07 [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0 Fabrice Fontaine
  2023-11-03  7:11 ` Herve Codina via buildroot
@ 2023-11-03  9:32 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-03  9:32 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Hervé Codina, buildroot

On Thu,  2 Nov 2023 22:07:04 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> This bump will fix the following build failure with kernel >= 6.6 thanks
> to
> https://github.com/ikwzm/dtbocfg/commit/36e9dad7bdedc43b9c63aa48c3fc48ffc4d2b2dd:
> 
> /home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c: In function ‘dtbocfg_overlay_item_create’:
> /home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c:68:19: error: too few arguments to function ‘of_overlay_fdt_apply’
>    68 |         ret_val = of_overlay_fdt_apply(overlay->dtbo,overlay->dtbo_size, &ovcs_id);
>       |                   ^~~~~~~~~~~~~~~~~~~~
> 
> https://github.com/ikwzm/dtbocfg/compare/v0.0.9...v0.1.0
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/e5bae7fa5558801c39f53a4a15ac550c3855322e
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/dtbocfg/dtbocfg.hash | 2 +-
>  package/dtbocfg/dtbocfg.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied to master, 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] 3+ messages in thread

end of thread, other threads:[~2023-11-03  9:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-02 21:07 [Buildroot] [PATCH 1/1] package/dtbocfg: bump to version 0.1.0 Fabrice Fontaine
2023-11-03  7:11 ` Herve Codina via buildroot
2023-11-03  9:32 ` Thomas Petazzoni via buildroot

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