All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
@ 2019-12-23 12:22 Fabio Estevam
  2019-12-23 12:22 ` [Buildroot] [PATCH 2/2] board/imx6-sabresd: Remove unneeded CONFIG_VIDEO_CODA fragment Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabio Estevam @ 2019-12-23 12:22 UTC (permalink / raw)
  To: buildroot

The correct syntax that Qt5 understands for display names is
"HDMI1" and "LVDS1", so fix it accordingly.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json b/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
index d5d063af87..fe92ce5b29 100644
--- a/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
+++ b/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
@@ -4,11 +4,11 @@
   "pbuffers": true,
   "outputs": [
     {
-      "name": "HDMI-1",
+      "name": "HDMI1",
       "mode": "off"
     },
     {
-      "name": "LVDS-1",
+      "name": "LVDS1",
       "mode": "1024x768"
     }
   ]
-- 
2.17.1

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

* [Buildroot] [PATCH 2/2] board/imx6-sabresd: Remove unneeded CONFIG_VIDEO_CODA fragment
  2019-12-23 12:22 [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Fabio Estevam
@ 2019-12-23 12:22 ` Fabio Estevam
  2019-12-23 20:02 ` [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Thomas Petazzoni
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Fabio Estevam @ 2019-12-23 12:22 UTC (permalink / raw)
  To: buildroot

Since kernel commit a5a56f07c272 ("ARM: imx_v6_v7_defconfig: Select the
coda driver as module") the VPU coda driver is selected as module, so it can
be safely removed from linux_qt5.fragment.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx6-sabresd/linux_qt5.fragment | 1 -
 1 file changed, 1 deletion(-)

diff --git a/board/freescale/imx6-sabresd/linux_qt5.fragment b/board/freescale/imx6-sabresd/linux_qt5.fragment
index d4f26b163c..ffa5f63eab 100644
--- a/board/freescale/imx6-sabresd/linux_qt5.fragment
+++ b/board/freescale/imx6-sabresd/linux_qt5.fragment
@@ -2,4 +2,3 @@
 # ondemand governor with a mainline kernel.
 # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
 CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
-CONFIG_VIDEO_CODA=m
-- 
2.17.1

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

* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
  2019-12-23 12:22 [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Fabio Estevam
  2019-12-23 12:22 ` [Buildroot] [PATCH 2/2] board/imx6-sabresd: Remove unneeded CONFIG_VIDEO_CODA fragment Fabio Estevam
@ 2019-12-23 20:02 ` Thomas Petazzoni
  2019-12-25 21:46 ` Peter Korsgaard
  2019-12-25 21:48 ` Michael Nazzareno Trimarchi
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-23 20:02 UTC (permalink / raw)
  To: buildroot

On Mon, 23 Dec 2019 09:22:52 -0300
Fabio Estevam <festevam@gmail.com> wrote:

> The correct syntax that Qt5 understands for display names is
> "HDMI1" and "LVDS1", so fix it accordingly.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
  2019-12-23 12:22 [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Fabio Estevam
  2019-12-23 12:22 ` [Buildroot] [PATCH 2/2] board/imx6-sabresd: Remove unneeded CONFIG_VIDEO_CODA fragment Fabio Estevam
  2019-12-23 20:02 ` [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Thomas Petazzoni
@ 2019-12-25 21:46 ` Peter Korsgaard
  2019-12-25 21:48 ` Michael Nazzareno Trimarchi
  3 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2019-12-25 21:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes:

 > The correct syntax that Qt5 understands for display names is
 > "HDMI1" and "LVDS1", so fix it accordingly.

 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed to 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
  2019-12-23 12:22 [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Fabio Estevam
                   ` (2 preceding siblings ...)
  2019-12-25 21:46 ` Peter Korsgaard
@ 2019-12-25 21:48 ` Michael Nazzareno Trimarchi
  2019-12-25 22:00   ` Fabio Estevam
  3 siblings, 1 reply; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2019-12-25 21:48 UTC (permalink / raw)
  To: buildroot

Hi Fabio and Jagan

On Mon, Dec 23, 2019 at 1:23 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> The correct syntax that Qt5 understands for display names is
> "HDMI1" and "LVDS1", so fix it accordingly.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json b/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
> index d5d063af87..fe92ce5b29 100644
> --- a/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
> +++ b/board/freescale/imx6-sabresd/rootfs_overlay/root/sabresd.json
> @@ -4,11 +4,11 @@
>    "pbuffers": true,
>    "outputs": [
>      {
> -      "name": "HDMI-1",
> +      "name": "HDMI1",
>        "mode": "off"
>      },
>      {
> -      "name": "LVDS-1",
> +      "name": "LVDS1",
>        "mode": "1024x768"
>      }
>    ]

Do the engicam board has the same problem? I can not test right now

Michael
> --
> 2.17.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot



-- 
| Michael Nazzareno Trimarchi                     Amarula Solutions BV |
| COO  -  Founder                                      Cruquiuskade 47 |
| +31(0)851119172                                 Amsterdam 1018 AM NL |
|                  [`as] http://www.amarulasolutions.com               |

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

* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
  2019-12-25 21:48 ` Michael Nazzareno Trimarchi
@ 2019-12-25 22:00   ` Fabio Estevam
  2019-12-25 22:06     ` Michael Nazzareno Trimarchi
  0 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2019-12-25 22:00 UTC (permalink / raw)
  To: buildroot

Hi Michael,

On Wed, Dec 25, 2019 at 6:49 PM Michael Nazzareno Trimarchi
<michael@amarulasolutions.com> wrote:

> Do the engicam board has the same problem? I can not test right now

Yes, I can send a fix tomorrow for the engicam .json files.

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

* [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names
  2019-12-25 22:00   ` Fabio Estevam
@ 2019-12-25 22:06     ` Michael Nazzareno Trimarchi
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2019-12-25 22:06 UTC (permalink / raw)
  To: buildroot

Hi

On Wed, Dec 25, 2019 at 11:00 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> Hi Michael,
>
> On Wed, Dec 25, 2019 at 6:49 PM Michael Nazzareno Trimarchi
> <michael@amarulasolutions.com> wrote:
>
> > Do the engicam board has the same problem? I can not test right now
>
> Yes, I can send a fix tomorrow for the engicam .json files.

Good, I can't just test right now. I have already here but I think
that we need to test it

Michael



-- 
| Michael Nazzareno Trimarchi                     Amarula Solutions BV |
| COO  -  Founder                                      Cruquiuskade 47 |
| +31(0)851119172                                 Amsterdam 1018 AM NL |
|                  [`as] http://www.amarulasolutions.com               |

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

end of thread, other threads:[~2019-12-25 22:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-23 12:22 [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Fabio Estevam
2019-12-23 12:22 ` [Buildroot] [PATCH 2/2] board/imx6-sabresd: Remove unneeded CONFIG_VIDEO_CODA fragment Fabio Estevam
2019-12-23 20:02 ` [Buildroot] [PATCH 1/2] board/imx6-sabresd: Fix the Qt5 display names Thomas Petazzoni
2019-12-25 21:46 ` Peter Korsgaard
2019-12-25 21:48 ` Michael Nazzareno Trimarchi
2019-12-25 22:00   ` Fabio Estevam
2019-12-25 22:06     ` Michael Nazzareno Trimarchi

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.