Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
Contents of gdk-x11-3.0.pc: - prefix=/usr exec_prefix=${prefix} libdir=/usr/lib/x86_64-linux-gnu includedir=${prefix}/include targets=x11 broadway wayland mir Name: GDK Description: GTK+ Drawing Kit Version: 3.18.9 Requires: pango pangocairo gdk-pixbuf-2.0 >= 2.30.0 cairo >= 1.14.0

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
My bad. It looks like it is here: /usr/lib/x86_64-linux-gnu/pkgconfig/gdk-x11-3.0.pc joe@ubuntu:/opt/yocto$ find / -name *.pc* 1> ~/find5.txt 2>/dev/null joe@ubuntu:/opt/yocto$ cat ~/find5.txt | grep gdk | grep x11 /usr/lib/x86_64-linux-gnu/pkgconfig/gdk-x11-3.0.pc joe@ubuntu:/opt/yocto$ ls

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
Thanks, Ross. Below is the output you requested. gdk-x11-3.0.pc does not seem to exist. Below, should that be "wandboard" and not "qemux86" ? joe@ubuntu:/opt/yocto/build$ joe@ubuntu:/opt/yocto/build$ oe-pkgdata-util find-path '*/gdk-x11-3.0.pc' ERROR: Unable to find pkgdata directory

[yocto] QA notification for completed autobuilder build (yocto-2.6.rc1)

2018-10-29 Thread Richard Purdie
A build flagged for QA (yocto-2.6.rc1) was completed on the autobuilder and is available at: https://autobuilder.yocto.io/pub/releases/yocto-2.6.rc1 Build hash information: bitbake: 0cfc71d1a342b82781b0ba547421e41f6340902a eclipse-poky-neon: 303e46a6848f1937d12541a7fd58e61aa1361225

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Burton, Ross
That is... interesting. Can you verify that this file has been built by gtk+3? $ oe-pkgdata-util find-path '*/gdk-x11-3.0.pc' gtk+3-dev: /usr/lib/pkgconfig/gdk-x11-3.0.pc If so can you find any gdk-x11-3.0.pc files under

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
HI Ross, It still doesn't work. local.conf https://pastebin.com/2Ng0wSCi log.do_configure.27655 https://pastebin.com/4EX9vqmK config.log https://pastebin.com/DY2FnM7w Thanks for trying to help me. Joe On Mon, Oct 29, 2018 at 11:43 AM Burton, Ross wrote: > x11 is in

Re: [yocto] [meta-selinux][sumo][PATCH 0/7] Refpolicy updates for sumo

2018-10-29 Thread akuster
On 10/29/18 11:31 AM, Joe MacDonald wrote: > I'm sending this out  as a follow-up to our discussion from last week. > This set will be placed on the newly-created 'sumo' branch.  I plan to > follow up with a slightly different version for a new 'thud' branch as > well, at which point things

Re: [yocto] [meta-selinux][sumo][PATCH 1/7] layer.conf: update LAYERSERIES_COMPAT `sumo' -> `thud'

2018-10-29 Thread akuster
On 10/29/18 11:32 AM, Joe MacDonald wrote: > From: Hongxu Jia > > Since `9ec5a8a layer.conf: Drop sumo from LAYERSERIES_CORENAMES' and > `9867924 layer.conf: Add thud to LAYERSERIES_CORENAMES' applied in oe-core, > update LAYERSERIES_COMPAT `sumo' -> `thud' the subject branch and change

[yocto] [meta-selinux][sumo][PATCH 7/7] refpolicy: fix up all refpolicy 20170224 builds for sumo

2018-10-29 Thread Joe MacDonald
Signed-off-by: Joe MacDonald --- ...poky-fc-update-alternatives_sysklogd.patch | 44 ++- ...add-rules-for-var-log-symlink-apache.patch | 10 ++--- ...add-rules-for-var-log-symlink-apache.patch | 27 ++-- recipes-security/refpolicy/refpolicy_git.inc | 2 - 4 files

[yocto] [meta-selinux][sumo][PATCH 5/7] refpolicy_git.inc: lock SRCREVs on the actual version hashes

2018-10-29 Thread Joe MacDonald
From: Awais Belal Using AUTOREV in the main repository has its downsides. 1. The checked out version isn't actually the version depicted by PV. 2. Breaks builds in scenarios where network isn't available or BB_NO_NETWORK is used even after sources are already fetched. 1 is self

[yocto] [meta-selinux][sumo][PATCH 6/7] Revert "layer.conf: update LAYERSERIES_COMPAT `sumo' -> `thud'"

2018-10-29 Thread Joe MacDonald
This reverts commit 8ff95d5b2a693aeb4e791aacf83d24313ce35f3e. Signed-off-by: Joe MacDonald --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index 5fecac6..0f9ea41 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -18,7

[yocto] [meta-selinux][sumo][PATCH 3/7] libselinux: Fix build with musl libc.

2018-10-29 Thread Joe MacDonald
From: Piotr Tworek Musl libc does not implement file traversal functions from fts.h. Oe-core provides fts library which implements those. Libselinux makefile allows us to use such additional library by specifying required linker flags via FTS_LDLIBS variable. Signed-off-by: Piotr Tworek

[yocto] [meta-selinux][sumo][PATCH 4/7] libpcre_selinux.inc: fix do_install failure if .so file does not exist

2018-10-29 Thread Joe MacDonald
From: Chen Qi In case of the existence of meta-mingw, the library is .dll instead of .so and these .dll files are in ${bindir}. We need to check the existence of the .so file before doing readlink, otherwise do_install fails. Signed-off-by: Chen Qi Signed-off-by: Joe MacDonald ---

[yocto] [meta-selinux][sumo][PATCH 2/7] setools: Add missing python runtime deps.

2018-10-29 Thread Joe MacDonald
From: Piotr Tworek The package needs logging, json and argparse modules to start. Additionaly, it also needs libselinux-python in order to really work. Without it it'll just print an error message instructing the user to install it. Signed-off-by: Piotr Tworek Signed-off-by: Joe MacDonald ---

[yocto] [meta-selinux][sumo][PATCH 1/7] layer.conf: update LAYERSERIES_COMPAT `sumo' -> `thud'

2018-10-29 Thread Joe MacDonald
From: Hongxu Jia Since `9ec5a8a layer.conf: Drop sumo from LAYERSERIES_CORENAMES' and `9867924 layer.conf: Add thud to LAYERSERIES_CORENAMES' applied in oe-core, update LAYERSERIES_COMPAT `sumo' -> `thud' Signed-off-by: Hongxu Jia Signed-off-by: Joe MacDonald --- conf/layer.conf | 2 +- 1

[yocto] [meta-selinux][sumo][PATCH 0/7] Refpolicy updates for sumo

2018-10-29 Thread Joe MacDonald
I'm sending this out as a follow-up to our discussion from last week. This set will be placed on the newly-created 'sumo' branch. I plan to follow up with a slightly different version for a new 'thud' branch as well, at which point things should be stable enough on those two branches that I can

[yocto] How to create a golang recipe using devtool

2018-10-29 Thread Shantanoo Desai
How do I create a recipe for golang open-source repositories using devtool? Does it require having Golang installed on the Host machine? I understand that one needs to add `inherit go` within the recipe but I am looking for a more concrete example as a reference. Initial Steps:

Re: [yocto] Need Help To Solve Errors while build of Yocto Project

2018-10-29 Thread Khem Raj
On Thu, Oct 25, 2018 at 8:13 AM Bhavin Dharmendrabhai Maru wrote: > > Hi Support Team, > > I am new to yocto project and start to build yocto project by the steps > provided in below link: > https://www.yoctoproject.org/docs/2.5.1/brief-yoctoprojectqs/brief-yoctoprojectqs.html > > I am getting

Re: [yocto] [qemu] How to use qemu in your testing cycle

2018-10-29 Thread Khem Raj
On Wed, Oct 24, 2018 at 11:58 PM Måns Zigher wrote: > > Hi, > > I am trying to wrap my head around how to incorporate qemu in our > test/development cycle. I am currently building machine genericx86-64 machine > producing a SDK and a number of files. One of them are the qemuboot.conf file >

Re: [yocto] Working on Dependent Recipes in eSDK

2018-10-29 Thread Khem Raj
On Thu, Oct 25, 2018 at 8:29 AM wrote: > > > ChenQi wrote on 10/22/2018 07:04:32 PM: > > > > Hi Aaron, > > > > The main pain for now is that `devtool sdk-install ' does > > > not work as expected, right? > > I just checked the codes of sdk-install, and found that it does not fit > > the current

Re: [yocto] Openjdk-8(Version 162b12) crash during runtime

2018-10-29 Thread Khem Raj
On Tue, Oct 23, 2018 at 3:49 PM Hitendra Prajapati wrote: > > I want to run latest java (version 162b12) which is given in latest > meta-java branch (sumo) for the colibri-imx6 module(armv7 architecture) > from Toradex. > > Currently I'm using latest poky version Sumo, and all the latest branch >

[yocto] intel-nuc: hddimg EFI_PROVIDER for final install

2018-10-29 Thread Belisko Marek
Hi, I'm trying to build hddimg for intel-nuc. Basically default EFI_PROVIDER is systemd-boot but I want to use grub-efi so I've updated variable accordingly. I have some changes in grub-efi (more rootfs partitions + data). When trying to start hddimg it will start grub with grub.cfg with my

Re: [yocto] Compilation error while backporting xserver-xorg of poky master branch to rocko

2018-10-29 Thread Khem Raj
On Wed, Oct 24, 2018 at 7:05 AM Pandey, Kamal wrote: > Hello, > > I am trying to run Weston 5.0 using poky’s rocko branch, so I backported a > few packages from poky master branch to my own custom layer. But in this > process xserver-xorg is giving me a compilation error. The contents of the >

Re: [linux-yocto] [PATCH v2] ipv4: net namespace does not inherit network configurations

2018-10-29 Thread Bruce Ashfield
On 2018-10-28 11:30 PM, He Zhe wrote: On 2018/10/29 10:52, Bruce Ashfield wrote: Looks fine to me. And to confirm, this is for 4.18, correct ? This is for linux-yocto-dev standard/base, linux-yocto v4.18/standard/base. Sounds good. It is merged to those kernels now, and I've queued the

Re: [yocto] Layers for AMD Geode LX 800

2018-10-29 Thread Khem Raj
there is meta-amd layer and its possible that it supported it may be some older branches also read this https://lists.yoctoproject.org/pipermail/yocto/2013-September/016081.html On Wed, Oct 24, 2018 at 11:07 AM Mauro Ziliani wrote: > > Hi all. > > Do you know if there is some layers ready for

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Burton, Ross
x11 is in the default DISTRO_FEATURES for poky, so you don't need to add that. If core-image-x11 works then core-image-sato should build fine. Try deleting your tmp/ and trying again, if that doesn't work then pastebin both temp/log.do_configure and config.log from the recipe that is failing

Re: [yocto] Add python2 as native package in openembedded sdk

2018-10-29 Thread Alberto Eusebi
On Wednesday 17 October 2018, alle 14:27, Burton, Ross wrote: > On Wed, 17 Oct 2018 at 14:18, Alberto Eusebi wrote: > > On Monday 15 October 2018, alle 17:57, Burton, Ross wrote: > > > Add nativesdk-python-core and nativesdk-python-modules to > > > TOOLCHAIN_HOST_TASK (using _append). > > > > >

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Bruce Ashfield
On 2018-10-29 11:18 AM, Bas Mevissen wrote: On 2018-10-29 16:14, Bruce Ashfield wrote: On 2018-10-29 11:12 AM, Khem Raj wrote: On Mon, Oct 29, 2018 at 6:46 AM Bruce Ashfield wrote: On 10/29/2018 9:10 AM, Khem Raj wrote: On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield wrote: On

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Bas Mevissen
On 2018-10-29 16:14, Bruce Ashfield wrote: On 2018-10-29 11:12 AM, Khem Raj wrote: On Mon, Oct 29, 2018 at 6:46 AM Bruce Ashfield wrote: On 10/29/2018 9:10 AM, Khem Raj wrote: On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield wrote: On 10/26/2018 4:28 AM, Måns Zigher wrote: So it looks

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Khem Raj
On Mon, Oct 29, 2018 at 8:14 AM Bruce Ashfield wrote: > > On 2018-10-29 11:12 AM, Khem Raj wrote: > > On Mon, Oct 29, 2018 at 6:46 AM Bruce Ashfield > > wrote: > >> > >> > >> > >> On 10/29/2018 9:10 AM, Khem Raj wrote: > >>> On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield > >>> wrote: > >

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Bruce Ashfield
On 2018-10-29 11:12 AM, Khem Raj wrote: On Mon, Oct 29, 2018 at 6:46 AM Bruce Ashfield wrote: On 10/29/2018 9:10 AM, Khem Raj wrote: On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield wrote: On 10/26/2018 4:28 AM, Måns Zigher wrote: So it looks like the number of /bin/awk have increased

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Khem Raj
On Mon, Oct 29, 2018 at 6:46 AM Bruce Ashfield wrote: > > > > On 10/29/2018 9:10 AM, Khem Raj wrote: > > On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield > > wrote: > >> > >> > >> > >> On 10/26/2018 4:28 AM, Måns Zigher wrote: > >>> So it looks like the number of /bin/awk have increased so the

Re: [yocto] nativesdk-libxcrypt-4.0.1 is failing

2018-10-29 Thread Dimitris Tassopoulos
Cool, thanks again Ross. On Mon, Oct 29, 2018 at 4:01 PM Burton, Ross wrote: > Yes, it needs to be backported. > > Ross > On Mon, 29 Oct 2018 at 14:58, Dimitris Tassopoulos > wrote: > > > > Hi Ross, > > > > thanks for the reply. Shouldn't these kind of fixes that break a poky > branch (like

[yocto] Yocto Project Unassigned Bugs - Help Needed

2018-10-29 Thread Jolley, Stephen K
All, The triage team meets weekly and does its best to handle the bugs reported into the bugzilla. The number of people attending that meeting has fallen, as have the number of people available to help fix bugs. One of the things we hear users report is they don't know how to help. We (the

[yocto] YP 2.7 Planning

2018-10-29 Thread Jolley, Stephen K
All, We have begun planning for YP 2.7. In prior versions, items that we didn't have the bandwidth to do were assigned the target milestone of 2.99. Since YP 2.7 planning has just begun, I would like each of you to review the bugs and enhancements in YP 2.99 and determine if you will have

Re: [yocto] nativesdk-libxcrypt-4.0.1 is failing

2018-10-29 Thread Burton, Ross
Yes, it needs to be backported. Ross On Mon, 29 Oct 2018 at 14:58, Dimitris Tassopoulos wrote: > > Hi Ross, > > thanks for the reply. Shouldn't these kind of fixes that break a poky branch > (like Sumo now, > which is still in use) be merged also to the affected branches and not only > future

Re: [yocto] nativesdk-libxcrypt-4.0.1 is failing

2018-10-29 Thread Burton, Ross
The fix is already queued in master-next, so will be n master/thud shortly. Ross On Mon, 29 Oct 2018 at 13:44, Dimitris Tassopoulos wrote: > > Hi all, > > it seems that the libxcrypt recipe in poky is failing because the git repo > doesn't have a master branch anymore. The default branch has

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
On Mon, Oct 29, 2018 at 8:47 PM Uwe Geuder wrote: > > On Mon, Oct 29, 2018 at 3:28 PM Zolee K zoleelikesdebian-at-gmail.com wrote: > > > The error message: > > > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing > > SRC_URI entry testscript: *file could not be found*

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Uwe Geuder
On Mon, Oct 29, 2018 at 3:28 PM Zolee K zoleelikesdebian-at-gmail.com wrote: > The error message: > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing > SRC_URI entry testscript: *file could not be found* > Which I don't understand, since the file is definitaly

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Bruce Ashfield
On 10/29/2018 9:10 AM, Khem Raj wrote: On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield wrote: On 10/26/2018 4:28 AM, Måns Zigher wrote: So it looks like the number of /bin/awk have increased so the patch will fix one problem but there is more to fix. I have a "workaround" even though I am

[yocto] nativesdk-libxcrypt-4.0.1 is failing

2018-10-29 Thread Dimitris Tassopoulos
Hi all, it seems that the libxcrypt recipe in poky is failing because the git repo doesn't have a master branch anymore. The default branch has changed to `develop` and the recipe can't fetch the repo when I'm building the SDK for my image. A temporary solution is to override the URL with a

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
On Mon, Oct 29, 2018 at 8:32 PM Outback Dingo wrote: > > SRC_URI = "file://testscript" > > FILESEXTRAPATHS_prepend := "${THISDIR}/file:" > > and file should be files crap ... sorry for the top post > On Mon, Oct 29, 2018 at 8:28 PM Zolee K wrote: > > > > Hi All, > > > > I'm struggling with

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
SRC_URI = "file://testscript" FILESEXTRAPATHS_prepend := "${THISDIR}/file:" and file should be files On Mon, Oct 29, 2018 at 8:28 PM Zolee K wrote: > > Hi All, > > I'm struggling with this: > > The error message: > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing >

[yocto] adding own shell script to the image

2018-10-29 Thread Zolee K
Hi All, I'm struggling with this: The error message: /home//recipes-z/testing/testing.bb: Unable to get checksum for testing SRC_URI entry testscript: *file could not be found* Which I don't understand, since the file is definitaly there:-( Could you please help me out with this?

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
Thanks, Ross. 1. Both of these commands worked: MACHINE=wandboard bitbake core-image-x11 MACHINE=wandboard bitbake gtk+3 2. I've attached my local.conf. If the attachment does not go through, then I will copy and paste it into my next message. Thanks! Joe --- On

Re: [yocto] [SDK] including kernel devsrc to the SDK failes

2018-10-29 Thread Khem Raj
On Fri, Oct 26, 2018 at 6:54 AM Bruce Ashfield wrote: > > > > On 10/26/2018 4:28 AM, Måns Zigher wrote: > > So it looks like the number of /bin/awk have increased so the patch will > > fix one problem but there is more to fix. I have a "workaround" even > > though I am not so sure it is a

Re: [yocto] [selinux] sumo compilation

2018-10-29 Thread Joe MacDonald
Hey all, I just thought I should quickly follow up on this. I have a change set ready that includes tagging and a minor tweak for sumo, integration of the current outstanding patch list and a tag for thud and a couple of additional things (possibly) for post-thud. I'll send out a set for sumo

Re: [yocto] adding own shell script

2018-10-29 Thread Uwe Geuder
On Mon, Oct 29, 2018 at 11:51 AM Zolee K zoleelikesdebian-at-gmail.com wrote: > > I'd like to install my own test.sh script into the image, I created this > recipe file, however I dont know how to have bitbake put the my test.sh > into /etc folder > > SUMMARY = "test.sh" > LICENSE = "Z" > >

Re: [yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Burton, Ross
Can you share your local.conf? Does bitbake gtk+3 work? Ross On Mon, 29 Oct 2018 at 06:42, Joe Flowers wrote: > > Hello everyone, > > 1. > I am trying to build a core-image-sato image for a WandBoard but am getting > stuck at this error message: > > "| No package 'gdk-x11-3.0' found" > > See

Re: [yocto] yocto Digest, Vol 97, Issue 86

2018-10-29 Thread ephraim ben-ishai
On Sun, Oct 28, 2018, 20:54 wrote: > Send yocto mailing list submissions to > yocto@yoctoproject.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.yoctoproject.org/listinfo/yocto > or, via email, send a message with subject or body 'help' to >

[yocto] adding own shell script

2018-10-29 Thread Zolee K
Hi all, I'd like to install my own test.sh script into the image, I created this recipe file, however I dont know how to have bitbake put the my test.sh into /etc folder SUMMARY = "test.sh" LICENSE = "Z" SRC_URI = "\ file://test.sh \ " do_configure(){ : } do_compile() { : }

[yocto] "bitbake core-image-sato" yields "No package 'gdk-x11-3.0' found" build failure

2018-10-29 Thread Joe Flowers
Hello everyone, 1. I am trying to build a core-image-sato image for a WandBoard but am getting stuck at this error message: "| No package 'gdk-x11-3.0' found" See below for more details. 2. I have grepped this list's archives and run into someone with the same problem, but a solution was