[yocto] How to output all distro features in a given build?

2015-10-22 Thread Fred Ollinger
I know how to add and remove distro features. However, what I'm after is how to dynamically list all the distro features that a build thinks is needs once all the files are combined together. For example, one can look at dependencies for a _single_ package by doing: $ bitbake -g

Re: [yocto] Updating NIC drivers in older Yocto

2015-10-14 Thread Fred Ollinger
I think #2 is a reasonable solution.? From: yocto-boun...@yoctoproject.org on behalf of Dave Mulder Sent: Tuesday, October 13, 2015 1:30 PM To: yocto@yoctoproject.org Subject: [yocto] Updating NIC drivers in

Re: [yocto] What's mounting this partition?

2015-09-28 Thread Fred Ollinger
If you have a sda1 drive, you can do: udevadm test /sys/class/block/sda1 to get debug info. From: yocto-boun...@yoctoproject.org on behalf of Paul D. DeRocco Sent: Sunday, September 27, 2015 2:52

[yocto] FILESEXTRAPATHS_prepend fails for systemd

2015-10-02 Thread Fred Ollinger
I'm trying to change my /etc/systemd/journald.conf file. I have created a file in: our_system/recipe-core/systemd_%.bbappend With the contents: FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" I created a directory in the same path called "systemd" and placed our new version of

Re: [yocto] [systemd-devel] How to automount

2015-09-22 Thread Fred Ollinger
This is in the package: udev-extraconf On your system look here: /etc/udev/rules.d/automount.rules In this file, you'll find the following rules. The second one auto unmounts. SUBSYSTEM=="block", ACTION=="add"RUN+="/etc/udev/scripts/mount.sh" SUBSYSTEM=="block", ACTION=="remove"

Re: [yocto] [systemd-devel] How to automount

2015-09-22 Thread Fred Ollinger
<pdero...@ix.netcom.com> Sent: Tuesday, September 22, 2015 4:42 PM To: Fred Ollinger; 'Mantas Mikulenas'; yocto@yoctoproject.org Subject: RE: [yocto] [systemd-devel] How to automount > From: Fred Ollinger [mailto:fred.ollin...@seescan.com] > > This is in the package: udev-extraconf >

Re: [yocto] How to execute a git submodule init/update?

2016-06-06 Thread Fred Ollinger
$ git submodule init $ git submodule update Also, there's git submodule foreach which allows you to do the same thing to each submodule (such as checkout a different branch). Frederick From: yocto-boun...@yoctoproject.org

Re: [yocto] Mounting USB drives on a "read-only-rootfs" based system

2016-06-14 Thread Fred Ollinger
There's also bind mounts as an option. The bind mounts. Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is: mount --bind olddir newdir or by using this fstab entry:

[yocto] ubuntu xenial support

2016-06-20 Thread Fred Ollinger
Anyone using Ubuntu Xenial release yet? Any tricks to get it working? Frederick -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] libQt5Network.so.5 - How does one get that please?

2016-02-05 Thread Fred Ollinger
Did you try $ ldd program-name This should tell you which libraries are missing and where it is looking. Then you can do: $ find / -name libname.so To find them. Finally, you can fix your /etc/ld.so.conf with the path to your libs. Then do $ ldconfig # refresh library cache so your

Re: [yocto] libgcc_s not present in Yocto image

2016-02-05 Thread Fred Ollinger
The results should tell us: $ files /usr/bin/testprog What are they? (Sitting on the edge of my seat.) From: Nathan Sowatskey <nat...@nathan.to> Sent: Friday, February 5, 2016 10:09 AM To: Fred Ollinger Cc: Burton, Ross; yocto@yoctoproject.org S

Re: [yocto] libgcc_s not present in Yocto image

2016-02-05 Thread Fred Ollinger
What's the result of: $ cat /proc/cpuinfo (So far, it seems like my hunch was wrong.) Frederick From: Nathan Sowatskey <nat...@nathan.to> Sent: Friday, February 5, 2016 10:12 AM To: Fred Ollinger Cc: Burton, Ross; yocto@yoctoproject.org Subje

Re: [yocto] libgcc_s not present in Yocto image

2016-02-05 Thread Fred Ollinger
My guess is that the executable is not compiled for his hardware. Frederick From: Burton, Ross <ross.bur...@intel.com> Sent: Friday, February 5, 2016 9:56 AM To: Nathan Sowatskey Cc: yocto@yoctoproject.org; Fred Ollinger Subject: Re: [yocto] libgcc_s not p

Re: [yocto] libgcc_s not present in Yocto image

2016-02-05 Thread Fred Ollinger
What are results of: $ file testprog Frederick From: Nathan Sowatskey <nat...@nathan.to> Sent: Friday, February 5, 2016 9:47 AM To: Burton, Ross Cc: yocto@yoctoproject.org; Fred Ollinger Subject: Re: [yocto] libgcc_s not present in Yocto image H

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Fred Ollinger
I run debian right now and it works great. $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description:Debian GNU/Linux 8.3 (jessie) Release:8.3 Codename: jessie I prefer debian over ubuntu: 1. Simpler footprint so it feels more customizable out of the

Re: [yocto] Dropping Debian 7 as supported?

2016-02-12 Thread Fred Ollinger
My apologies. From: Burton, Ross <ross.bur...@intel.com> Sent: Friday, February 12, 2016 9:18 AM To: Fred Ollinger Cc: Nick Leverton; yocto@yoctoproject.org Subject: Re: [yocto] Dropping Debian 7 as supported? On 12 February 2016 at 17:14, Fred Ol

Re: [yocto] Problem installing ath10k firmware

2016-02-02 Thread Fred Ollinger
http://linuxwireless.org/en/users/Drivers/ath10k/firmware/ Seems like you should get the firmware here: https://github.com/kvalo/ath10k-firmware/tree/master/ and copy it here: $ cp firmware-2.bin_10.1.467.2-1 /lib/firmware/ath10k/QCA988X/hw2.0/firmware-2.bin Frederick

[yocto] Qt5 embedded Japanese input

2016-03-30 Thread Fred Ollinger
There are methods in desktop linux which allow one to input Japanese (and other non-Latin language) text into text fields. Does anyone have any experience with integrating a stand alone solution into a Qt5 application? Frederick -- ___ yocto

Re: [yocto] [OE-core] [oe] OEDAM, April 8 in San Diego after ELC

2016-03-23 Thread Fred Ollinger
I'm coming and I'm probably brining another person. I still have to make the wiki account which failed for some reason before. Frederick From: yocto-boun...@yoctoproject.org on behalf of Trevor Woerner

Re: [yocto] [PATCH] udev: Rename udev bbappend to eudev.

2016-03-07 Thread Fred Ollinger
Can someone please let me know what the reasoning behind the switch to eudev? Sincerely, Frederick From: yocto-boun...@yoctoproject.org on behalf of Philip Tricca Sent: Sunday, March 6, 2016 12:08 PM To:

Re: [yocto] Debian Stretch build error "Install SDL devel"

2016-04-01 Thread Fred Ollinger
quot; Thank-you for the quick and accurate reply. Frederick From: Andre McCurdy <armccu...@gmail.com> Sent: Thursday, March 31, 2016 8:30 PM To: Fred Ollinger Cc: yocto@yoctoproject.org Subject: Re: [yocto] Debian Stretch build error "Install SDL devel" On Thu, Mar 31, 2016 at 3:5

[yocto] Debian Stretch build error "Install SDL devel"

2016-03-31 Thread Fred Ollinger
I know that Debian Stretch is not supported, but I'd like to help shake out the errors to get support. I'm on poky commit 9fd145d27ec479668fac490a9f1078089f22bf59 I tried to build qemu-native and it failed with the following: | ERROR: User requested feature sdl |configure was not

Re: [yocto] MySQL recipe for yocto

2016-04-20 Thread Fred Ollinger
ere? 4. For a quick sanity test, build the code for your PC to ensure that you can do this and you know how the process works. 5. We can take the results of all the rest and fix the .bb file. Frederick From: Moti Cohen <motic.m...@gmail.com> Sent: Wedne

Re: [yocto] MySQL recipe for yocto

2016-04-20 Thread Fred Ollinger
t, it seems like it will be a difficult task for me to clean these errors. I realy hope there's a simpler way go about it :) On Wed, Apr 20, 2016 at 8:25 PM, Fred Ollinger <fred.ollin...@seescan.com<mailto:fred.ollin...@seescan.com>> wrote: I'd start with the mysql recipe and update the source

Re: [yocto] how to configure the build packages of a makefile based libary

2016-04-28 Thread Fred Ollinger
Add to bb recipe: FILES_${PN} += "/usr/local" Section 9.2: https://www.yoctoproject.org/docs/1.8/ref-manual/ref-manual.html#qa-errors-and-warnings From: yocto-boun...@yoctoproject.org on behalf of Burton, Ross

Re: [yocto] Antwort: Re: how to configure the build packages of a makefile based libary

2016-04-28 Thread Fred Ollinger
TLIBNAME) $(INSTALL_LIBRARY_PATH) mkdir -p $(INSTALL_PKGCONF_PATH) $(INSTALL) $(PKGCONFNAME) $(INSTALL_PKGCONF_PATH) From: s.jar...@esa-grimma.de <s.jar...@esa-grimma.de> Sent: Thursday, April 28, 2016 9:09 AM To: Burton, Ross Cc: Fred Ollinger; yocto@yoctoproject.org Su

Re: [yocto] Problems building core-minimal-rt on Jethro (2.0.1) and Krogoth (2.1)

2016-05-04 Thread Fred Ollinger
Perhaps you could cd to the source directory and do: $ git pull Then try to rebuild. Frederick From: yocto-boun...@yoctoproject.org on behalf of Ronald Oakes Sent: Wednesday, May 4, 2016 7:02 AM To:

Re: [yocto] MySQL recipe for yocto

2016-04-20 Thread Fred Ollinger
I'd start with the mysql recipe and update the source reference and try to build it. If this fails, you might need to change some other things. Here's a howto on writing a recipe: https://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#new-recipe-writing-a-new-recipe

Re: [yocto] Recipe that creates empty /var/log directory is auto-mounted to /var/volatile/log

2016-05-09 Thread Fred Ollinger
Some people choose a read-only file system. Thus /var/log is not writable. However, some software expects to use the hard coded path of /var/log. Thus, there's a symlink to the ramdisk to solve both problems. From: yocto-boun...@yoctoproject.org

Re: [yocto] mount bind /var/lib and package management

2016-05-25 Thread Fred Ollinger
Bind mount can allow mount to be two places: >From the mount manpage: " The bind mounts. Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is: mount --bind olddir newdir" If you do this, then you have your

[yocto] where to find license files?

2016-08-04 Thread Fred Ollinger
I'm working on getting a list of license files and I don't know where to get the exact text of each license. Is there a place where this is provided by yocto? For example, is there some directory which has all the license files? I see there's an md5sum for each file so I assume this is the

Re: [yocto] Compilation error

2016-09-12 Thread Fred Ollinger
Smells like you didn't include a file. man 2 close says: #include Frederick From: yocto-boun...@yoctoproject.org on behalf of Rudolf Streif Sent: Monday, September 12, 2016 6:53 PM To: Vijayakumar

Re: [yocto] How to add my own c++ project into a Yocto distro

2016-09-23 Thread Fred Ollinger
Here's how to write a recipe: http://www.yoctoproject.org/docs/1.6/dev-manual/dev-manual.html#new-recipe-writing-a-new-recipe When we started, we also had custom Makefiles. However, we found it was easier to add our recipes to automake before making a bitbake recipe. Automake is a challenge

Re: [yocto] How to add libudev.h

2016-11-03 Thread Fred Ollinger
I belive this goes in your .bb file: DEPENDS = " \ udev \ " RDEPENDS_${PN} = " \ udev \ " Also, you probably need the right flags for libudev. Here are docs on that: https://www.freedesktop.org/software/systemd/man/libudev.html Of course, you need

Re: [yocto] useradd-example.bb

2018-02-14 Thread Fred Ollinger
How are you deploying the final image on your device? From: yocto-boun...@yoctoproject.org on behalf of Jean-Pierre Sainfeld Sent: Tuesday, February 13, 2018 1:32 PM To: yocto@yoctoproject.org Subject: