All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency
@ 2020-03-18 20:50 Thomas Petazzoni
  2020-03-18 21:34 ` Yann E. MORIN
  2020-03-27 22:05 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2020-03-18 20:50 UTC (permalink / raw)
  To: buildroot

Some ATF configurations, such as the ones for the STM32MP1 processor
family, require DTC during the build as Device Tree files are
used. Without dtc, the build fails:

/bin/sh: 1: dtc: not found
dtc version too old (), you need at least version 1.4.4
plat/st/stm32mp1/platform.mk:239: recipe for target 'check_dtc_version' failed
make[1]: *** [check_dtc_version] Error 1

To solve this, this commit implements a
BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC option, in a way that mimics
the BR2_TARGET_UBOOT_NEEDS_DTC option we already have for the U-Boot
package.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 boot/arm-trusted-firmware/Config.in               | 7 +++++++
 boot/arm-trusted-firmware/arm-trusted-firmware.mk | 4 ++++
 2 files changed, 11 insertions(+)

diff --git a/boot/arm-trusted-firmware/Config.in b/boot/arm-trusted-firmware/Config.in
index 373591d497..737dc587e5 100644
--- a/boot/arm-trusted-firmware/Config.in
+++ b/boot/arm-trusted-firmware/Config.in
@@ -160,4 +160,11 @@ config BR2_TARGET_ARM_TRUSTED_FIRMWARE_IMAGES
 	  Names of generated image files that are installed in the
 	  output images/ directory.
 
+config BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC
+	bool "Needs dtc"
+	select BR2_PACKAGE_HOST_DTC
+	help
+	  Select this option if your ATF board configuration
+	  requires the Device Tree compiler to be available.
+
 endif
diff --git a/boot/arm-trusted-firmware/arm-trusted-firmware.mk b/boot/arm-trusted-firmware/arm-trusted-firmware.mk
index 34737018aa..27f63a87fe 100644
--- a/boot/arm-trusted-firmware/arm-trusted-firmware.mk
+++ b/boot/arm-trusted-firmware/arm-trusted-firmware.mk
@@ -29,6 +29,10 @@ endif
 
 ARM_TRUSTED_FIRMWARE_INSTALL_IMAGES = YES
 
+ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC),y)
+ARM_TRUSTED_FIRMWARE_DEPENDENCIES += host-dtc
+endif
+
 ARM_TRUSTED_FIRMWARE_PLATFORM = $(call qstrip,$(BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM))
 
 ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE_DEBUG),y)
-- 
2.25.1

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

* [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency
  2020-03-18 20:50 [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency Thomas Petazzoni
@ 2020-03-18 21:34 ` Yann E. MORIN
  2020-03-27 22:05 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-03-18 21:34 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2020-03-18 21:50 +0100, Thomas Petazzoni spake thusly:
> Some ATF configurations, such as the ones for the STM32MP1 processor
> family, require DTC during the build as Device Tree files are
> used. Without dtc, the build fails:
> 
> /bin/sh: 1: dtc: not found
> dtc version too old (), you need at least version 1.4.4
> plat/st/stm32mp1/platform.mk:239: recipe for target 'check_dtc_version' failed
> make[1]: *** [check_dtc_version] Error 1
> 
> To solve this, this commit implements a
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC option, in a way that mimics
> the BR2_TARGET_UBOOT_NEEDS_DTC option we already have for the U-Boot
> package.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Applied to master, thanks.

As discused on IRC, if this trend continues, we could/should switch to
depending on the host package if it is enabled, rather than add yet more
such _NEEDS_STUFF options...

Regards,
Yann E. MORIN.

> ---
>  boot/arm-trusted-firmware/Config.in               | 7 +++++++
>  boot/arm-trusted-firmware/arm-trusted-firmware.mk | 4 ++++
>  2 files changed, 11 insertions(+)
> 
> diff --git a/boot/arm-trusted-firmware/Config.in b/boot/arm-trusted-firmware/Config.in
> index 373591d497..737dc587e5 100644
> --- a/boot/arm-trusted-firmware/Config.in
> +++ b/boot/arm-trusted-firmware/Config.in
> @@ -160,4 +160,11 @@ config BR2_TARGET_ARM_TRUSTED_FIRMWARE_IMAGES
>  	  Names of generated image files that are installed in the
>  	  output images/ directory.
>  
> +config BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC
> +	bool "Needs dtc"
> +	select BR2_PACKAGE_HOST_DTC
> +	help
> +	  Select this option if your ATF board configuration
> +	  requires the Device Tree compiler to be available.
> +
>  endif
> diff --git a/boot/arm-trusted-firmware/arm-trusted-firmware.mk b/boot/arm-trusted-firmware/arm-trusted-firmware.mk
> index 34737018aa..27f63a87fe 100644
> --- a/boot/arm-trusted-firmware/arm-trusted-firmware.mk
> +++ b/boot/arm-trusted-firmware/arm-trusted-firmware.mk
> @@ -29,6 +29,10 @@ endif
>  
>  ARM_TRUSTED_FIRMWARE_INSTALL_IMAGES = YES
>  
> +ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC),y)
> +ARM_TRUSTED_FIRMWARE_DEPENDENCIES += host-dtc
> +endif
> +
>  ARM_TRUSTED_FIRMWARE_PLATFORM = $(call qstrip,$(BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM))
>  
>  ifeq ($(BR2_TARGET_ARM_TRUSTED_FIRMWARE_DEBUG),y)
> -- 
> 2.25.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.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency
  2020-03-18 20:50 [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency Thomas Petazzoni
  2020-03-18 21:34 ` Yann E. MORIN
@ 2020-03-27 22:05 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-03-27 22:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

 > Some ATF configurations, such as the ones for the STM32MP1 processor
 > family, require DTC during the build as Device Tree files are
 > used. Without dtc, the build fails:

 > /bin/sh: 1: dtc: not found
 > dtc version too old (), you need at least version 1.4.4
 > plat/st/stm32mp1/platform.mk:239: recipe for target 'check_dtc_version' failed
 > make[1]: *** [check_dtc_version] Error 1

 > To solve this, this commit implements a
 > BR2_TARGET_ARM_TRUSTED_FIRMWARE_NEEDS_DTC option, in a way that mimics
 > the BR2_TARGET_UBOOT_NEEDS_DTC option we already have for the U-Boot
 > package.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

It isn't really technically a bugfix, but it seems quite low risk and
useful for the affected people, so committed to 2020.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-03-27 22:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-18 20:50 [Buildroot] [PATCH] boot/arm-trusted-firmware: add optional host-dtc dependency Thomas Petazzoni
2020-03-18 21:34 ` Yann E. MORIN
2020-03-27 22:05 ` Peter Korsgaard

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.