Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL
@ 2017-09-07 13:00 julien.boibessot at free.fr
  2017-09-14  5:39 ` Jörg Krause
  2017-09-19 20:25 ` Arnout Vandecappelle
  0 siblings, 2 replies; 3+ messages in thread
From: julien.boibessot at free.fr @ 2017-09-07 13:00 UTC (permalink / raw)
  To: buildroot

From: Julien BOIBESSOT <julien.boibessot@armadeus.com>

Mostly to compile imx-lib (providing libpxp) on i.MX6UL (which have a PXP 
hardware unit) and to prevent compilation of imx-lib's modules not supported
on i.MX6UL.

Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com>
---
Changes v1 -> v2:
  - add more commit comments (as suggested by Baruch)

 package/freescale-imx/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/freescale-imx/Config.in b/package/freescale-imx/Config.in
index 656b44b..fa3f9a0 100644
--- a/package/freescale-imx/Config.in
+++ b/package/freescale-imx/Config.in
@@ -31,6 +31,9 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
 config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
 	bool "imx6q"
 
+config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
+	bool "imx6ul"
+
 endchoice
 
 config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
@@ -42,6 +45,7 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
 	default "IMX51" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51
 	default "IMX53" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
 	default "IMX6Q" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
+	default "IMX6UL" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
 
 config BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
 	bool
-- 
2.1.4

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

* [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL
  2017-09-07 13:00 [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL julien.boibessot at free.fr
@ 2017-09-14  5:39 ` Jörg Krause
  2017-09-19 20:25 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Jörg Krause @ 2017-09-14  5:39 UTC (permalink / raw)
  To: buildroot

On Thu, 2017-09-07 at 15:00 +0200, julien.boibessot at free.fr wrote:
> From: Julien BOIBESSOT <julien.boibessot@armadeus.com>
> 
> Mostly to compile imx-lib (providing libpxp) on i.MX6UL (which have a PXP 
> hardware unit) and to prevent compilation of imx-lib's modules not supported
> on i.MX6UL.
> 
> Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com>
> ---
> Changes v1 -> v2:
>   - add more commit comments (as suggested by Baruch)
> 
>  package/freescale-imx/Config.in | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/freescale-imx/Config.in b/package/freescale-imx/Config.in
> index 656b44b..fa3f9a0 100644
> --- a/package/freescale-imx/Config.in
> +++ b/package/freescale-imx/Config.in
> @@ -31,6 +31,9 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
>  config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
>  	bool "imx6q"
>  
> +config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
> +	bool "imx6ul"
> +
>  endchoice
>  
>  config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
> @@ -42,6 +45,7 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
>  	default "IMX51" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51
>  	default "IMX53" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
>  	default "IMX6Q" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
> +	default "IMX6UL" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
>  
>  config BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
>  	bool

Acked-by: J?rg Krause <joerg.krause@embedded.rocks>

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

* [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL
  2017-09-07 13:00 [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL julien.boibessot at free.fr
  2017-09-14  5:39 ` Jörg Krause
@ 2017-09-19 20:25 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2017-09-19 20:25 UTC (permalink / raw)
  To: buildroot



On 07-09-17 15:00, julien.boibessot at free.fr wrote:
> From: Julien BOIBESSOT <julien.boibessot@armadeus.com>
> 
> Mostly to compile imx-lib (providing libpxp) on i.MX6UL (which have a PXP 
> hardware unit) and to prevent compilation of imx-lib's modules not supported
> on i.MX6UL.
> 
> Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com>

 Applied to master, thanks.

 Regards,
 Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

end of thread, other threads:[~2017-09-19 20:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-07 13:00 [Buildroot] [PATCH 1/1 v2] package/freescale-imx: add support for i.MX6UL julien.boibessot at free.fr
2017-09-14  5:39 ` Jörg Krause
2017-09-19 20:25 ` Arnout Vandecappelle

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