Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/rock5b_defconfig: add missing U-Boot build dependency
@ 2024-11-04 21:39 Brandon Maier via buildroot
  2024-11-04 22:19 ` Niklas Cassel via buildroot
  2024-11-05 20:13 ` Julien Olivain
  0 siblings, 2 replies; 3+ messages in thread
From: Brandon Maier via buildroot @ 2024-11-04 21:39 UTC (permalink / raw)
  To: buildroot; +Cc: Kilian Zinnecker, Niklas Cassel, Brandon Maier

When building the rock5b with BR2_PER_PACKAGE_DIRECTORIES enabled, the
following error occurs from U-Boot.

  tools/mkeficapsule.c:19:10: fatal error: uuid/uuid.h: No such file or
  directory
     19 | #include <uuid/uuid.h>
        |          ^~~~~~~~~~~~~

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 configs/rock5b_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/rock5b_defconfig b/configs/rock5b_defconfig
index af748a5d25a2b2be3f72d6d93d413be04c5a59a8..38b5aad206229f57925480820c94487b2db5365b 100644
--- a/configs/rock5b_defconfig
+++ b/configs/rock5b_defconfig
@@ -39,6 +39,7 @@ BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_PYELFTOOLS=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_NEEDS_GNUTLS=y
+BR2_TARGET_UBOOT_NEEDS_UTIL_LINUX=y
 BR2_TARGET_UBOOT_NEEDS_ROCKCHIP_RKBIN=y
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_DTC=y

---
base-commit: d74a5a218fabee928abb347086648ad142f7d5a5
change-id: 20241104-rock5b-uboot-uuid-7824f5d9f24b

Best regards,
-- 
Brandon Maier <brandon.maier@collins.com>

_______________________________________________
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] configs/rock5b_defconfig: add missing U-Boot build dependency
  2024-11-04 21:39 [Buildroot] [PATCH] configs/rock5b_defconfig: add missing U-Boot build dependency Brandon Maier via buildroot
@ 2024-11-04 22:19 ` Niklas Cassel via buildroot
  2024-11-05 20:13 ` Julien Olivain
  1 sibling, 0 replies; 3+ messages in thread
From: Niklas Cassel via buildroot @ 2024-11-04 22:19 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot@buildroot.org, Kilian Zinnecker, Niklas Cassel

On Mon, Nov 04, 2024 at 09:39:55PM +0000, Brandon Maier wrote:
> When building the rock5b with BR2_PER_PACKAGE_DIRECTORIES enabled, the
> following error occurs from U-Boot.
> 
>   tools/mkeficapsule.c:19:10: fatal error: uuid/uuid.h: No such file or
>   directory
>      19 | #include <uuid/uuid.h>
>         |          ^~~~~~~~~~~~~
> 
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>
> ---
>  configs/rock5b_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/rock5b_defconfig b/configs/rock5b_defconfig
> index af748a5d25a2b2be3f72d6d93d413be04c5a59a8..38b5aad206229f57925480820c94487b2db5365b 100644
> --- a/configs/rock5b_defconfig
> +++ b/configs/rock5b_defconfig
> @@ -39,6 +39,7 @@ BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
>  BR2_TARGET_UBOOT_NEEDS_PYELFTOOLS=y
>  BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>  BR2_TARGET_UBOOT_NEEDS_GNUTLS=y
> +BR2_TARGET_UBOOT_NEEDS_UTIL_LINUX=y
>  BR2_TARGET_UBOOT_NEEDS_ROCKCHIP_RKBIN=y
>  BR2_PACKAGE_HOST_DOSFSTOOLS=y
>  BR2_PACKAGE_HOST_DTC=y
> 
> ---
> base-commit: d74a5a218fabee928abb347086648ad142f7d5a5
> change-id: 20241104-rock5b-uboot-uuid-7824f5d9f24b
> 
> Best regards,
> -- 
> Brandon Maier <brandon.maier@collins.com>
> 

Reviewed-by: Niklas Cassel <cassel@kernel.org>
_______________________________________________
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] configs/rock5b_defconfig: add missing U-Boot build dependency
  2024-11-04 21:39 [Buildroot] [PATCH] configs/rock5b_defconfig: add missing U-Boot build dependency Brandon Maier via buildroot
  2024-11-04 22:19 ` Niklas Cassel via buildroot
@ 2024-11-05 20:13 ` Julien Olivain
  1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain @ 2024-11-05 20:13 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot, Kilian Zinnecker, Niklas Cassel

On 04/11/2024 22:39, Brandon Maier via buildroot wrote:
> When building the rock5b with BR2_PER_PACKAGE_DIRECTORIES enabled, the
> following error occurs from U-Boot.
> 
>   tools/mkeficapsule.c:19:10: fatal error: uuid/uuid.h: No such file or
>   directory
>      19 | #include <uuid/uuid.h>
>         |          ^~~~~~~~~~~~~
> 
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Applied to master. Thanks!

> ---
>  configs/rock5b_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/rock5b_defconfig b/configs/rock5b_defconfig
> index 
> af748a5d25a2b2be3f72d6d93d413be04c5a59a8..38b5aad206229f57925480820c94487b2db5365b 
> 100644
> --- a/configs/rock5b_defconfig
> +++ b/configs/rock5b_defconfig
> @@ -39,6 +39,7 @@ BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
>  BR2_TARGET_UBOOT_NEEDS_PYELFTOOLS=y
>  BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>  BR2_TARGET_UBOOT_NEEDS_GNUTLS=y
> +BR2_TARGET_UBOOT_NEEDS_UTIL_LINUX=y
>  BR2_TARGET_UBOOT_NEEDS_ROCKCHIP_RKBIN=y
>  BR2_PACKAGE_HOST_DOSFSTOOLS=y
>  BR2_PACKAGE_HOST_DTC=y
> 
> ---
> base-commit: d74a5a218fabee928abb347086648ad142f7d5a5
> change-id: 20241104-rock5b-uboot-uuid-7824f5d9f24b
> 
> Best regards,
> --
> Brandon Maier <brandon.maier@collins.com>
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
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:[~2024-11-05 20:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-04 21:39 [Buildroot] [PATCH] configs/rock5b_defconfig: add missing U-Boot build dependency Brandon Maier via buildroot
2024-11-04 22:19 ` Niklas Cassel via buildroot
2024-11-05 20:13 ` Julien Olivain

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