[yocto] [yocto-autobuilder][PATCH] bin/buildlogger: add new script to aid SWAT process

2016-05-09 Thread Joshua Lock
buildlogger will be started with the autobuilder and, when correctly configured, monitor the AB's JSON API for newly started builds. When one is detected information about the build will be posted to the wiki. Requires a ConfigParser (ini) style configuration file at AB_BASE/etc/buildlogger.conf f

Re: [yocto] HG Parameters for the fetcher

2016-05-09 Thread S . Jaritz
Thanks, What is when the HG comes over SSH with authentication? Like: SRC_URI = "hg://myHG/ABC;module="dev";protocol=ssh;rev=42" with user for example "yocto" I think the syntax could be: SRC_URI = "hg://yocto@myHG/ABC;module="dev";protocol=ssh;rev=42" Regards Stefan Jaritz Entwickler -

[yocto] Formulating Recipe for out-of-tree kernel module

2016-05-09 Thread Chris Trobridge
I am looking to produce a recipe for the amfeltec usb-fxs adaptor (http://amfeltec.com/products/piranha-usb-fxs-adapter/), with the intention of contributing this to the meta-telephony layer. However, I have found a few obstacles to getting a clean recipe:The makefile produces both a kernel modu

Re: [yocto] [yocto-autobuilder][PATCH] bin/buildlogger: add new script to aid SWAT process

2016-05-09 Thread Flanagan, Elizabeth
A few things. On 9 May 2016 at 12:06, Joshua Lock wrote: > buildlogger will be started with the autobuilder and, when correctly > configured, monitor the AB's JSON API for newly started builds. When one is > detected information about the build will be posted to the wiki. > > Requires a ConfigPar

Re: [yocto] [yocto-autobuilder][PATCH] bin/buildlogger: add new script to aid SWAT process

2016-05-09 Thread Joshua G Lock
On Mon, 2016-05-09 at 12:42 +0100, Flanagan, Elizabeth wrote: > A few things. > > On 9 May 2016 at 12:06, Joshua Lock wrote: > > > > buildlogger will be started with the autobuilder and, when > > correctly > > configured, monitor the AB's JSON API for newly started builds. > > When one is > > de

[yocto] [yocto-autobuilder][PATCH v2] bin/buildlogger: add new script to aid SWAT process

2016-05-09 Thread Joshua Lock
buildlogger will be started with the autobuilder and, when correctly configured, monitor the AB's JSON API for newly started builds. When one is detected information about the build will be posted to the wiki. Requires a ConfigParser (ini) style configuration file at AB_BASE/etc/buildlogger.conf f

Re: [yocto] [yocto-autobuilder][PATCH v2] bin/buildlogger: add new script to aid SWAT process

2016-05-09 Thread Flanagan, Elizabeth
Thanks, pushed to master, currently working on getting it into production. -b On 9 May 2016 at 13:30, Joshua Lock wrote: > buildlogger will be started with the autobuilder and, when correctly > configured, monitor the AB's JSON API for newly started builds. When one is > detected information abo

Re: [yocto] Using multiple versions of package (PACKAGECONFIG) in the same bitbake

2016-05-09 Thread Paul Knopf
Thanks, What I winded up doing is using bbappend to remove fstab from base-files. I then created two separate packages with different fstab files, and added each of them into their own image. On Sun, May 8, 2016 at 1:09 PM Khem Raj wrote: > On May 8, 2016, at 6:50 AM, Paul Knopf wrote: > > I h

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

2016-05-09 Thread Paul Knopf
I have a simple recipe that places files on the system. - do_install() { # create this directory, because our "normal" fstab file will mount a log partition to it. install -d ${D}/var/log install -d ${D}${sysconfdir} install -m 0644 ${WORKDIR}/fstab-normal ${D}${sysconfdir}/fst

[yocto] Eclipse, CMake and EXTRA_OECONF_GCC_FLOAT

2016-05-09 Thread Simon Lindgren
Hi, I'm having some issues using the Eclipse CMake support with my own hard float arm toolchain. This used to work, and I believe the main change affecting my problem is this: https://git.yoctoproject.org/cgit.cgi/poky/commit/meta/recipes-devtools/gcc/gcc-configure-common.inc?id=075e2884ce1009425

[yocto] How to build a simple kernel modul

2016-05-09 Thread S . Jaritz
Hej, I want to build a recipe for a simple GPIO Module. I found no tutorial at the documentation. What is the comon way to build a simple kernel module? The Makefile looks like: # obj-m += ledmodule.o SRC := $(shell pwd) all: modules modules: $(MAKE) -C $(KERNEL_SRC) M=$(SRC)

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

2016-05-09 Thread Randle, William C
It happens in meta/recipes-core/initscripts. I don't know the history behind it, but the OE convention is to use /var/volatile, I believe mainly so that /var/volatile could be a RAMFS. -Bill On Mon, 2016-05-09 at 10:02 -0400, Paul Knopf wrote: I have a simple recipe that places files on the

[yocto] [ANNOUNCEMENT] Chameleonsocks 1.0 is now available

2016-05-09 Thread Minchev, Todor
Chameleonsocks provides containerized system-wide redsocks-based TCP redirector to generic SOCKS or HTTP proxies. It is particularly useful for people who use Yocto on firewalled networks where the real Internet is accessed through proxies. The installer script can be downloaded from the upstream

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 on behalf of

Re: [yocto] [PATCH v2 1/2] kernel-dev: Fix the locations of .config and source directory

2016-05-09 Thread Tom Zanussi
ping On 05/03/2016 11:28 AM, Tom Zanussi wrote: The locations of the kernel .config file and source directory moved a couple releases ago; update the documentation accordingly. Also, add a note explaining how to expand variables, which serves a couple of purposes: * For curious readers, sho

[linux-yocto] [PATCH] meta-yocto-bsp: beaglebone: Enable drm for omap

2016-05-09 Thread edwin . plauchu . camacho
From: Edwin Plauchu The modesettings driver for beaglebone is requiring this module enable. --- bsp/beaglebone/beaglebone.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/beaglebone/beaglebone.cfg b/bsp/beaglebone/beaglebone.cfg index 781ecfc..66a6361 100644 --- a/bsp/beaglebone/beagl

Re: [yocto] How to build a simple kernel modul

2016-05-09 Thread Petter Mabäcker
2016-05-09 17:06 skrev s.jar...@esa-grimma.de: > Hej, > > I want to build a recipe for a simple GPIO Module. I found no tutorial at the documentation. What is the comon way to build a simple kernel module? > > The Makefile looks like: > # > obj-m += ledmodule.o > > SRC := $(she