All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gary Bisson <gary.bisson@boundarydevices.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 01/16] freescale-imx: add config options for i.MX6SL/SX and i.MX7D/ULP
Date: Wed,  3 Jan 2018 19:38:27 +0100	[thread overview]
Message-ID: <20180103183842.10182-2-gary.bisson@boundarydevices.com> (raw)
In-Reply-To: <20180103183842.10182-1-gary.bisson@boundarydevices.com>

In order to match the latest imx-lib PLATFORM variable requirements [1].

Also creating BR2_PACKAGE_FREESCALE_IMX_HAS_VIV_GPU so that it is easier
to hide/show the Vivante-related packages.

[1] https://github.com/Freescale/meta-freescale/blob/master/recipes-bsp/imx-lib/imx-lib_git.bb

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
 package/freescale-imx/Config.in | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

diff --git a/package/freescale-imx/Config.in b/package/freescale-imx/Config.in
index fa3f9a0d38..e02adf51e3 100644
--- a/package/freescale-imx/Config.in
+++ b/package/freescale-imx/Config.in
@@ -29,10 +29,16 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
 	bool "imx53"
 
 config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
-	bool "imx6q"
+	bool "imx6q/imx6dl"
+
+config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6S
+	bool "imx6sl/imx6sx"
 
 config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
-	bool "imx6ul"
+	bool "imx6ul/imx6ull"
+
+config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX7
+	bool "imx7d/imx7ulp"
 
 endchoice
 
@@ -45,14 +51,23 @@ 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 "IMX6S" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6S
 	default "IMX6UL" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6UL
+	default "IMX7" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX7
 
 config BR2_PACKAGE_FREESCALE_IMX_HAS_VPU
 	bool
 	default y if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX27ADS || \
 		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || \
 		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53 || \
-		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
+		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q || \
+		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6S
+
+config BR2_PACKAGE_FREESCALE_IMX_HAS_VIV_GPU
+	bool
+	default y if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q || \
+		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6S || \
+		BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX7
 
 source "package/freescale-imx/imx-codec/Config.in"
 source "package/freescale-imx/imx-kobs/Config.in"
@@ -66,7 +81,7 @@ if (BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || BR2_PACKAGE_FREESCALE_IMX_PLATFO
 source "package/freescale-imx/gpu-amd-bin-mx51/Config.in"
 source "package/freescale-imx/libz160/Config.in"
 endif
-if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
+if BR2_PACKAGE_FREESCALE_IMX_HAS_VIV_GPU
 source "package/freescale-imx/imx-gpu-viv/Config.in"
 source "package/freescale-imx/kernel-module-imx-gpu-viv/Config.in"
 endif
-- 
2.15.1

  reply	other threads:[~2018-01-03 18:38 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-03 18:38 [Buildroot] [PATCH 00/16] imx: update packages to 4.9.x_1.0.0_ga release Gary Bisson
2018-01-03 18:38 ` Gary Bisson [this message]
2018-01-03 18:38 ` [Buildroot] [PATCH 02/16] imx-lib: bump to version imx_4.9.11_1.0.0_ga Gary Bisson
2018-01-03 20:48   ` Thomas Petazzoni
2018-01-04  9:48     ` Gary Bisson
2018-01-04  9:58       ` Thomas Petazzoni
2018-01-03 18:38 ` [Buildroot] [PATCH 03/16] imx-gpu-viv: bump to version 6.2.2.p0 Gary Bisson
2018-01-03 20:47   ` Thomas Petazzoni
2018-01-03 18:38 ` [Buildroot] [PATCH 04/16] kernel-module-imx-gpu-viv: " Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 05/16] imx-gpu-g2d: new package Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 06/16] xdriver_xf86-video-imx-viv: bump to version 6.2.2.p0 Gary Bisson
2018-01-03 20:50   ` Thomas Petazzoni
2018-01-04 10:32     ` Gary Bisson
2018-01-04 10:41       ` Thomas Petazzoni
2018-01-03 18:38 ` [Buildroot] [PATCH 07/16] gst1-imx: update g2d libraries dependencies Gary Bisson
2018-01-03 20:52   ` Thomas Petazzoni
2018-01-03 18:38 ` [Buildroot] [PATCH 08/16] firmware-imx: bump to version 6.0 Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 09/16] imx-codec: bump to version 4.2.1 Gary Bisson
2018-01-03 18:54   ` Baruch Siach
2018-01-03 18:38 ` [Buildroot] [PATCH 10/16] imx-parser: " Gary Bisson
2018-01-03 20:53   ` Thomas Petazzoni
2018-01-03 18:38 ` [Buildroot] [PATCH 11/16] imx-vpu: bump to version 5.4.37 Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 12/16] imx-kobs: bump revision to a0e9adce Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 13/16] imx-uuc: bump revision to 2ae63428 Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 14/16] configs: freescale_imx*: bump to version 4.9.x_1.0.0_ga Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 15/16] configs: nitrogen*: bump kernel version to 4.9.x_1.0.0_ga Gary Bisson
2018-01-03 18:38 ` [Buildroot] [PATCH 16/16] configs: nitrogen*: bump u-boot version to 2017.07 Gary Bisson
2018-01-03 20:54 ` [Buildroot] [PATCH 00/16] imx: update packages to 4.9.x_1.0.0_ga release Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180103183842.10182-2-gary.bisson@boundarydevices.com \
    --to=gary.bisson@boundarydevices.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.