All of lore.kernel.org
 help / color / mirror / Atom feed
* visual studio code packages or building instructions?
@ 2019-11-01 16:35 Aaron Solochek
  2019-11-01 16:48 ` Khem Raj
  2019-11-01 16:51 ` Ross Burton
  0 siblings, 2 replies; 7+ messages in thread
From: Aaron Solochek @ 2019-11-01 16:35 UTC (permalink / raw)
  To: yocto

I would like to get visual studio code on my NXP i.MX8. If someone is
aware of a aarch64 rpm of it, that would be the easiest. Alternatively,
if anyone knows how to build it using bitbake, I can build it myself.

Thank you.

-Aaron

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

* Re: visual studio code packages or building instructions?
  2019-11-01 16:35 visual studio code packages or building instructions? Aaron Solochek
@ 2019-11-01 16:48 ` Khem Raj
  2019-11-01 16:51 ` Ross Burton
  1 sibling, 0 replies; 7+ messages in thread
From: Khem Raj @ 2019-11-01 16:48 UTC (permalink / raw)
  To: Aaron Solochek; +Cc: yocto

On Fri, Nov 1, 2019 at 9:37 AM Aaron Solochek <aaron.solochek@sri.com> wrote:
>
> I would like to get visual studio code on my NXP i.MX8. If someone is
> aware of a aarch64 rpm of it, that would be the easiest. Alternatively,
> if anyone knows how to build it using bitbake, I can build it myself.
>

I dont think we have recipe for it yet but you might want to look into
https://code.headmelted.com/

> Thank you.
>
> -Aaron
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


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

* Re: visual studio code packages or building instructions?
  2019-11-01 16:35 visual studio code packages or building instructions? Aaron Solochek
  2019-11-01 16:48 ` Khem Raj
@ 2019-11-01 16:51 ` Ross Burton
  2019-11-01 17:51   ` Aaron Solochek
  1 sibling, 1 reply; 7+ messages in thread
From: Ross Burton @ 2019-11-01 16:51 UTC (permalink / raw)
  To: Aaron Solochek, yocto

On 01/11/2019 16:35, Aaron Solochek wrote:
> I would like to get visual studio code on my NXP i.MX8. If someone is
> aware of a aarch64 rpm of it, that would be the easiest. Alternatively,
> if anyone knows how to build it using bitbake, I can build it myself.

Well Microsoft only make x86 binaries available:

https://code.visualstudio.com/#alt-downloads

So you'll have to follow the instructions at 
https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run

They use Yarn, so you'll have to package that first.

Comments like 
https://github.com/microsoft/vscode/issues/6442#issuecomment-509605292 
on the bug asking for RPi support isn't exactly encouraging though.

Ross


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

* Re: visual studio code packages or building instructions?
  2019-11-01 16:51 ` Ross Burton
@ 2019-11-01 17:51   ` Aaron Solochek
  2019-11-01 18:03     ` Ross Burton
  2019-11-01 18:03     ` Nicolas Dechesne
  0 siblings, 2 replies; 7+ messages in thread
From: Aaron Solochek @ 2019-11-01 17:51 UTC (permalink / raw)
  To: Ross Burton, yocto

Well I grabbed the .deb that one of those links mentioned and converted it to an rpm, but of course there are a ton of unmet dependencies, so I might have to build it anyway.

I found these instructions for building it, which are pinned to an older version (which is probably fine)

https://github.com/futurejones/code-oss-aarch64

I have gotten most of the dependencies built with bitbake, except for the  x11 stuff: 

ERROR: Nothing RPROVIDES 'packagegroup-core-x11' (but /home/aarons/sri/bullitt/nxp/imx-yocto-bsp/sources/meta-fsl-bsp-release/imx/meta-sdk/dynamic-layers/qt5-layer/recipes-fsl/images/fsl-image-qt5-validation-imx.bb RDEPENDS on or otherwise requires it)
packagegroup-core-x11 was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
NOTE: Runtime target 'packagegroup-core-x11' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-core-x11']
ERROR: Required build target 'fsl-image-qt5-validation-imx' has no buildable providers.
Missing or unbuildable dependency chain was: ['fsl-image-qt5-validation-imx', 'packagegroup-core-x11']

But this is my local.conf:

MACHINE ??= 'imx8mqevk'
DISTRO ?= 'fsl-imx-wayland'
PACKAGE_CLASSES ?= "package_rpm"
EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS ??= "\
    STOPTASKS,${TMPDIR},1G,100K \
    STOPTASKS,${DL_DIR},1G,100K \
    STOPTASKS,${SSTATE_DIR},1G,100K \
    STOPTASKS,/tmp,100M,100K \
    ABORT,${TMPDIR},100M,1K \
    ABORT,${DL_DIR},100M,1K \
    ABORT,${SSTATE_DIR},100M,1K \
    ABORT,/tmp,10M,1K"
PACKAGECONFIG_append_pn-qemu-native = " sdl"
PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
CONF_VERSION = "1"
#IMAGE_FEATURES_append = " package-management tools-sdk  x11-base x11"
IMAGE_FEATURES += "package-management"
IMAGE_FEATURES += "tools-sdk"
IMAGE_FEATURES += "x11-base"
IMAGE_FEATURES += "x11"


As you can see, I tried adding x11 both using IMAGE_FEATURES += as well as IMAGE_FEATURES_append (where I would then comment out the += lines)
Why is x11 never getting added to the DISTRO_FEATURES? I also tried putting x11 in DISTRO_FEATURES and DISTRO_FEATURES_append. 

What is the correct thing here?

I also installed yarn according to those instructions, which worked (it said it was successfully installed) however when I tried to use it I got an error about not finding gulp:

# yarn watch
yarn run v1.19.1
$ gulp watch --max_old_space_size=4095
/bin/sh: gulp: command not found
error Command failed with exit code 127.

I don't know anything about yarn. Is gulp another package I need to install, or should it be part of yarn? 

Thank you.

-Aaron

-----Original Message-----
From: Ross Burton <ross.burton@intel.com> 
Sent: Friday, November 1, 2019 12:52 PM
To: Aaron Solochek <aaron.solochek@sri.com>; yocto@yoctoproject.org
Subject: Re: [yocto] visual studio code packages or building instructions?

On 01/11/2019 16:35, Aaron Solochek wrote:
> I would like to get visual studio code on my NXP i.MX8. If someone is 
> aware of a aarch64 rpm of it, that would be the easiest. 
> Alternatively, if anyone knows how to build it using bitbake, I can build it myself.

Well Microsoft only make x86 binaries available:

https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcode.visualstudio.com%2F%23alt-downloads&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=mSWDKRoSwEfy2SiGAgOdcKZvcrvofVPqriDnu5Pd3bI%3D&amp;reserved=0

So you'll have to follow the instructions at
https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMicrosoft%2Fvscode%2Fwiki%2FHow-to-Contribute%23build-and-run&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=3WHuWNu9ngP%2Fbymit1UgnuBawO1b123F1LdwTuHot0U%3D&amp;reserved=0

They use Yarn, so you'll have to package that first.

Comments like
https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode%2Fissues%2F6442%23issuecomment-509605292&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=F0XX9b%2FADWjPJbeis%2FgIlyRunHbb4zpj6Mw3ac1Cs%2Fw%3D&amp;reserved=0
on the bug asking for RPi support isn't exactly encouraging though.

Ross

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

* Re: visual studio code packages or building instructions?
  2019-11-01 17:51   ` Aaron Solochek
@ 2019-11-01 18:03     ` Ross Burton
  2019-11-01 18:08       ` Aaron Solochek
  2019-11-01 18:03     ` Nicolas Dechesne
  1 sibling, 1 reply; 7+ messages in thread
From: Ross Burton @ 2019-11-01 18:03 UTC (permalink / raw)
  To: Aaron Solochek, yocto

On 01/11/2019 17:51, Aaron Solochek wrote:
> Well I grabbed the .deb that one of those links mentioned and converted it to an rpm, but of course there are a ton of unmet dependencies, so I might have to build it anyway.
> 
> I found these instructions for building it, which are pinned to an older version (which is probably fine)
> 
> https://github.com/futurejones/code-oss-aarch64
> 
> I have gotten most of the dependencies built with bitbake, except for the  x11 stuff:
> 
> ERROR: Nothing RPROVIDES 'packagegroup-core-x11' (but /home/aarons/sri/bullitt/nxp/imx-yocto-bsp/sources/meta-fsl-bsp-release/imx/meta-sdk/dynamic-layers/qt5-layer/recipes-fsl/images/fsl-image-qt5-validation-imx.bb RDEPENDS on or otherwise requires it)
> packagegroup-core-x11 was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
> NOTE: Runtime target 'packagegroup-core-x11' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['packagegroup-core-x11']
> ERROR: Required build target 'fsl-image-qt5-validation-imx' has no buildable providers.
> Missing or unbuildable dependency chain was: ['fsl-image-qt5-validation-imx', 'packagegroup-core-x11']
> 
> But this is my local.conf:
> 
> MACHINE ??= 'imx8mqevk'
> DISTRO ?= 'fsl-imx-wayland'
> PACKAGE_CLASSES ?= "package_rpm"
> EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS ??= "\
>      STOPTASKS,${TMPDIR},1G,100K \
>      STOPTASKS,${DL_DIR},1G,100K \
>      STOPTASKS,${SSTATE_DIR},1G,100K \
>      STOPTASKS,/tmp,100M,100K \
>      ABORT,${TMPDIR},100M,1K \
>      ABORT,${DL_DIR},100M,1K \
>      ABORT,${SSTATE_DIR},100M,1K \
>      ABORT,/tmp,10M,1K"
> PACKAGECONFIG_append_pn-qemu-native = " sdl"
> PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
> CONF_VERSION = "1"
> #IMAGE_FEATURES_append = " package-management tools-sdk  x11-base x11"
> IMAGE_FEATURES += "package-management"
> IMAGE_FEATURES += "tools-sdk"
> IMAGE_FEATURES += "x11-base"
> IMAGE_FEATURES += "x11"
> 
> 
> As you can see, I tried adding x11 both using IMAGE_FEATURES += as well as IMAGE_FEATURES_append (where I would then comment out the += lines)
> Why is x11 never getting added to the DISTRO_FEATURES? I also tried putting x11 in DISTRO_FEATURES and DISTRO_FEATURES_append.
> 
> What is the correct thing here?

Adding x11 to IMAGE_FEATURES doesn't achieve anything, as x11 isn't an 
IMAGE_FEATURE.  It's a DISTRO_FEATURE.

DISTRO ?= 'fsl-imx-wayland'

https://github.com/Freescale/meta-freescale-distro/blob/master/conf/distro/fsl-wayland.conf 
says that this explicitly does DISTRO_FEATURES_remove = "x11" so you 
can't add it back.

I suggest you use a DISTRO that supports X11.

Ross


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

* Re: visual studio code packages or building instructions?
  2019-11-01 17:51   ` Aaron Solochek
  2019-11-01 18:03     ` Ross Burton
@ 2019-11-01 18:03     ` Nicolas Dechesne
  1 sibling, 0 replies; 7+ messages in thread
From: Nicolas Dechesne @ 2019-11-01 18:03 UTC (permalink / raw)
  To: Aaron Solochek; +Cc: yocto

On Fri, Nov 1, 2019 at 6:51 PM Aaron Solochek <aaron.solochek@sri.com> wrote:
>
> Well I grabbed the .deb that one of those links mentioned and converted it to an rpm, but of course there are a ton of unmet dependencies, so I might have to build it anyway.
>
> I found these instructions for building it, which are pinned to an older version (which is probably fine)
>
> https://github.com/futurejones/code-oss-aarch64
>
> I have gotten most of the dependencies built with bitbake, except for the  x11 stuff:
>
> ERROR: Nothing RPROVIDES 'packagegroup-core-x11' (but /home/aarons/sri/bullitt/nxp/imx-yocto-bsp/sources/meta-fsl-bsp-release/imx/meta-sdk/dynamic-layers/qt5-layer/recipes-fsl/images/fsl-image-qt5-validation-imx.bb RDEPENDS on or otherwise requires it)
> packagegroup-core-x11 was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
> NOTE: Runtime target 'packagegroup-core-x11' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['packagegroup-core-x11']
> ERROR: Required build target 'fsl-image-qt5-validation-imx' has no buildable providers.
> Missing or unbuildable dependency chain was: ['fsl-image-qt5-validation-imx', 'packagegroup-core-x11']
>
> But this is my local.conf:
>
> MACHINE ??= 'imx8mqevk'
> DISTRO ?= 'fsl-imx-wayland'

The name of the distro most likely means that this distro is doing
DISTRO_FEATURES_remove = "x11"

which would result in the 'error' you are seeing. You should use a
distro which is compatible with X11 instead.

> PACKAGE_CLASSES ?= "package_rpm"
> EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS ??= "\
>     STOPTASKS,${TMPDIR},1G,100K \
>     STOPTASKS,${DL_DIR},1G,100K \
>     STOPTASKS,${SSTATE_DIR},1G,100K \
>     STOPTASKS,/tmp,100M,100K \
>     ABORT,${TMPDIR},100M,1K \
>     ABORT,${DL_DIR},100M,1K \
>     ABORT,${SSTATE_DIR},100M,1K \
>     ABORT,/tmp,10M,1K"
> PACKAGECONFIG_append_pn-qemu-native = " sdl"
> PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
> CONF_VERSION = "1"
> #IMAGE_FEATURES_append = " package-management tools-sdk  x11-base x11"
> IMAGE_FEATURES += "package-management"
> IMAGE_FEATURES += "tools-sdk"
> IMAGE_FEATURES += "x11-base"
> IMAGE_FEATURES += "x11"

it fails because x11 is disable in DISTRO_FEATURES, not IMAGE_FEATURES.

>
>
> As you can see, I tried adding x11 both using IMAGE_FEATURES += as well as IMAGE_FEATURES_append (where I would then comment out the += lines)
> Why is x11 never getting added to the DISTRO_FEATURES? I also tried putting x11 in DISTRO_FEATURES and DISTRO_FEATURES_append.

_remove can't be un-done.

>
> What is the correct thing here?
>
> I also installed yarn according to those instructions, which worked (it said it was successfully installed) however when I tried to use it I got an error about not finding gulp:
>
> # yarn watch
> yarn run v1.19.1
> $ gulp watch --max_old_space_size=4095
> /bin/sh: gulp: command not found
> error Command failed with exit code 127.
>
> I don't know anything about yarn. Is gulp another package I need to install, or should it be part of yarn?
>
> Thank you.
>
> -Aaron
>
> -----Original Message-----
> From: Ross Burton <ross.burton@intel.com>
> Sent: Friday, November 1, 2019 12:52 PM
> To: Aaron Solochek <aaron.solochek@sri.com>; yocto@yoctoproject.org
> Subject: Re: [yocto] visual studio code packages or building instructions?
>
> On 01/11/2019 16:35, Aaron Solochek wrote:
> > I would like to get visual studio code on my NXP i.MX8. If someone is
> > aware of a aarch64 rpm of it, that would be the easiest.
> > Alternatively, if anyone knows how to build it using bitbake, I can build it myself.
>
> Well Microsoft only make x86 binaries available:
>
> https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcode.visualstudio.com%2F%23alt-downloads&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=mSWDKRoSwEfy2SiGAgOdcKZvcrvofVPqriDnu5Pd3bI%3D&amp;reserved=0
>
> So you'll have to follow the instructions at
> https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMicrosoft%2Fvscode%2Fwiki%2FHow-to-Contribute%23build-and-run&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=3WHuWNu9ngP%2Fbymit1UgnuBawO1b123F1LdwTuHot0U%3D&amp;reserved=0
>
> They use Yarn, so you'll have to package that first.
>
> Comments like
> https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode%2Fissues%2F6442%23issuecomment-509605292&amp;data=01%7C01%7Caaron.solochek%40sri.com%7Ca9ecc8ecbf4e4aeb6bf208d75eebd148%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=F0XX9b%2FADWjPJbeis%2FgIlyRunHbb4zpj6Mw3ac1Cs%2Fw%3D&amp;reserved=0
> on the bug asking for RPi support isn't exactly encouraging though.
>
> Ross
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


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

* Re: visual studio code packages or building instructions?
  2019-11-01 18:03     ` Ross Burton
@ 2019-11-01 18:08       ` Aaron Solochek
  0 siblings, 0 replies; 7+ messages in thread
From: Aaron Solochek @ 2019-11-01 18:08 UTC (permalink / raw)
  To: Ross Burton, yocto



-----Original Message-----
From: Ross Burton <ross.burton@intel.com> 
Sent: Friday, November 1, 2019 2:04 PM
To: Aaron Solochek <aaron.solochek@sri.com>; yocto@yoctoproject.org
Subject: Re: [yocto] visual studio code packages or building instructions?

On 01/11/2019 17:51, Aaron Solochek wrote:
> Well I grabbed the .deb that one of those links mentioned and converted it to an rpm, but of course there are a ton of unmet dependencies, so I might have to build it anyway.
> 
> I found these instructions for building it, which are pinned to an 
> older version (which is probably fine)
> 
> https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith
> ub.com%2Ffuturejones%2Fcode-oss-aarch64&amp;data=01%7C01%7Caaron.soloc
> hek%40sri.com%7C660e9bc6cada46f92d8608d75ef5d038%7C40779d3379c44626b8b
> f140c4d5e9075%7C1&amp;sdata=CLhgG4mZZ2EUuiJlJ5Ebqc3xApqspO4RxMvkaEJZx4
> s%3D&amp;reserved=0
> 
> I have gotten most of the dependencies built with bitbake, except for the  x11 stuff:
> 
> ERROR: Nothing RPROVIDES 'packagegroup-core-x11' (but 
> /home/aarons/sri/bullitt/nxp/imx-yocto-bsp/sources/meta-fsl-bsp-releas
> e/imx/meta-sdk/dynamic-layers/qt5-layer/recipes-fsl/images/fsl-image-q
> t5-validation-imx.bb RDEPENDS on or otherwise requires it)
> packagegroup-core-x11 was skipped: missing required distro feature 
> 'x11' (not in DISTRO_FEATURES)
> NOTE: Runtime target 'packagegroup-core-x11' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['packagegroup-core-x11']
> ERROR: Required build target 'fsl-image-qt5-validation-imx' has no buildable providers.
> Missing or unbuildable dependency chain was: 
> ['fsl-image-qt5-validation-imx', 'packagegroup-core-x11']
> 
> But this is my local.conf:
> 
> MACHINE ??= 'imx8mqevk'
> DISTRO ?= 'fsl-imx-wayland'
> PACKAGE_CLASSES ?= "package_rpm"
> EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS ??= "\
>      STOPTASKS,${TMPDIR},1G,100K \
>      STOPTASKS,${DL_DIR},1G,100K \
>      STOPTASKS,${SSTATE_DIR},1G,100K \
>      STOPTASKS,/tmp,100M,100K \
>      ABORT,${TMPDIR},100M,1K \
>      ABORT,${DL_DIR},100M,1K \
>      ABORT,${SSTATE_DIR},100M,1K \
>      ABORT,/tmp,10M,1K"
> PACKAGECONFIG_append_pn-qemu-native = " sdl"
> PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
> CONF_VERSION = "1"
> #IMAGE_FEATURES_append = " package-management tools-sdk  x11-base x11"
> IMAGE_FEATURES += "package-management"
> IMAGE_FEATURES += "tools-sdk"
> IMAGE_FEATURES += "x11-base"
> IMAGE_FEATURES += "x11"
> 
> 
> As you can see, I tried adding x11 both using IMAGE_FEATURES += as 
> well as IMAGE_FEATURES_append (where I would then comment out the += lines) Why is x11 never getting added to the DISTRO_FEATURES? I also tried putting x11 in DISTRO_FEATURES and DISTRO_FEATURES_append.
> 
> What is the correct thing here?

Adding x11 to IMAGE_FEATURES doesn't achieve anything, as x11 isn't an IMAGE_FEATURE.  It's a DISTRO_FEATURE.

DISTRO ?= 'fsl-imx-wayland'

https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FFreescale%2Fmeta-freescale-distro%2Fblob%2Fmaster%2Fconf%2Fdistro%2Ffsl-wayland.conf&amp;data=01%7C01%7Caaron.solochek%40sri.com%7C660e9bc6cada46f92d8608d75ef5d038%7C40779d3379c44626b8bf140c4d5e9075%7C1&amp;sdata=i7DpsY90tCm4VJheO3d0T%2BZqFh8g7ZwBXpx7XS3xoDE%3D&amp;reserved=0
says that this explicitly does DISTRO_FEATURES_remove = "x11" so you can't add it back.

I suggest you use a DISTRO that supports X11.

Oh, duh. I need fsl-imx-xwayland. 

Thank you!

-Aaron

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

end of thread, other threads:[~2019-11-01 18:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-01 16:35 visual studio code packages or building instructions? Aaron Solochek
2019-11-01 16:48 ` Khem Raj
2019-11-01 16:51 ` Ross Burton
2019-11-01 17:51   ` Aaron Solochek
2019-11-01 18:03     ` Ross Burton
2019-11-01 18:08       ` Aaron Solochek
2019-11-01 18:03     ` Nicolas Dechesne

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.