[yocto] Custom image type with dependencies

2018-10-01 Thread Jef Driesen
Hi, We use a gpg signed tarball as our image format. This is implemented using CONVERSIONTYPES: CONVERSIONTYPES += "gpg" CONVERSION_CMD_gpg = "gpg --batch --yes -s ${IMAGE_NAME}.rootfs.${type}" CONVERSION_DEPENDS_gpg = "gnupg" And then in the image recipe: IMAGE_FSTYPES += "tar tar.gpg"

Re: [yocto] [PATCH] runtime: add BSP test case for usb storage

2018-10-01 Thread Mike Looijmans
On 24-09-18 23:01, Paul Eggleton wrote: On Monday, 24 September 2018 3:02:28 PM NZST Hussin, Mohamad Noor Alim wrote: ... Otherwise I agree with Mike's reply, we should avoid writing to the storage device as part of the test. It is mean that just do test like mount and unmount only? To read

[yocto] [layerindex-web][PATCH] Fix broken regex for recipes with names containing + signs

2018-10-01 Thread Paul Eggleton
In order to show bbappends on the recipe detail page we are doing a regex query to find any whose names match up with the recipe. In the layer index instance at layers.openembedded.org viewing the recipe detail page for any recipe whose name contains ++ (e.g. libsigc++-2.0 in meta-oe) results in

[yocto] [yocto-docs][PATCH] kernel-dev: document the change detection of kernel feature files

2018-10-01 Thread Urs Fässler
Recommend to add recipe-space features to SRC_URI so that changes to them are detected automatically. Signed-off-by: Urs Fässler Signed-off-by: Pascal Bach --- documentation/kernel-dev/kernel-dev-common.xml | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git

[yocto] Reminder: Yocto Project Technical Team Meeting @ Monthly from 8am to 8:30am on the first Tuesday (PDT)

2018-10-01 Thread Jolley, Stephen K
All, Just a reminder we will hold the monthly Yocto Project Technical Meeting at 8am PDT tomorrow. We will begin the YP 2.7 Planning effort at this time. Yocto Project Technical Team Meeting: We encourage people attending the meeting to logon and announce themselves on the Yocto Project IRC

[linux-yocto] [PATCH 09/10] work-simple: drop a shit statement in SWORK_EVENT_PENDING

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit 22f41ebe5579cc847a7bb6c71916be92c8926216 from linux-rt-devel. Dan Carpenter reported | smatch warnings: |kernel/sched/swork.c:63 swork_kthread() warn: test_bit() takes a bit number This is not a bug because we shift by zero (and use the same value in both

[linux-yocto] [PATCH 08/10] rcu: Use cpus_read_lock() while looking at cpu_online_mask

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit eb1987eef4f20ae92c21c50c4c75c6148a27d482 from linux-rt-devel. It was possible that sync_rcu_exp_select_cpus() enqueued something on CPU0 while CPU0 was offline. Such a work item wouldn't be processed until CPU0 gets back online. This problem was addressed

[linux-yocto] [PATCH 10/10] rt: bump localversion

2018-10-01 Thread Paul Gortmaker
We've added the equivalent updates from upstream in linux-rt-devel as can be seen from this snippet of the commit history there: a7abcd43f6a7 (HEAD -> linux-4.18.y-rt, tag: v4.18.7-rt5, origin/linux-4.18.y-rt) v4.18.7-rt5 22f41ebe5579 work-simple: drop a shit statement in SWORK_EVENT_PENDING

[linux-yocto] [PATCH 04/10] irqchip/gic-v3-its: Move pending table allocation to init time

2018-10-01 Thread Paul Gortmaker
From: Marc Zyngier commit 4a0819bb25d12d39c0390636122eefba232596c1 from linux-rt-devel. Signed-off-by: Marc Zyngier [bigeasy: backport commit effe377d415 ("irqchip/gic-v3-its: Move pending table allocation to init time")] Signed-off-by: Sebastian Andrzej Siewior Signed-off-by: Paul

[linux-yocto] [PATCH 03/10] powerpc: correct the preempt-lazy assembly

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit 7bcb4eb241e37d111cbca61a86ea0da180a6f2b3 from linux-rt-devel. The powerpc port won't compile and abort with "Error: operand out of range" because the TIF_NEED_RESCHED_LAZY uses bit 20 which is larger than 15 which is the upper limit. Swap it with TIF_32BIT

[linux-yocto] [PATCH 06/10] of: allocate / free phandle cache outside of the devtree_lock

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit b75caf08b721aee6f0aec7350b2136ff1e704337 from linux-rt-devel. The phandle cache code allocates memory while holding devtree_lock which is a raw_spinlock_t. Memory allocation (and free()) is not possible on RT while a raw_spinlock_t is held. Invoke the

[linux-yocto] [PATCH 05/10] Drivers: hv: vmbus: include header for get_irq_regs()

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit b9fcc1867cc7921bb8441be327ed58461ed12255 from linux-rt-devel. On !RT the header file get_irq_regs() gets pulled in via other header files. On RT it does not and the build fails: drivers/hv/vmbus_drv.c:975 implicit declaration of function

[linux-yocto] [PATCH 02/10] staging: android: vsoc: use hrtimer_init_sleeper_on_stack()

2018-10-01 Thread Paul Gortmaker
From: Sebastian Andrzej Siewior commit 3f1b0eab8fb3d592ae2da62a62b0522b365781e0 from linux-rt-devel. This is an update to v2 of "hrtimer: consolidate hrtimer_init() + hrtimer_init_sleeper() calls" which also converts hrtimer_init_on_stack() + hrtimer_init_sleeper() in the vsoc.c driver.

[linux-yocto] [PATCH 4.18-rt 00/10] upstream updates rt1 --> rt5

2018-10-01 Thread Paul Gortmaker
Bruce, Yocto kernel folks, Here are the preempt-rt updates applied to the 4.18 yocto kernel. A couple of the version bumps were just merges of the latest stable tag from GregKH, and no preempt-rt specific changes. The details of the updates that did have -rt specific content are listed below:

[linux-yocto] [PATCH 01/10] sched: Allow pinned user tasks to be awakened to the CPU they pinned

2018-10-01 Thread Paul Gortmaker
From: Mike Galbraith commit cd4d35ef89948221f7cd1751cee453943967364c from linux-rt-devel. Since commit 7af443ee16976 ("sched/core: Require cpu_active() in select_task_rq(), for user tasks") select_fallback_rq() will BUG() if the CPU to which a task has pinned itself and pinned becomes

[yocto] Yocto Project Unassigned Bugs - Help Needed

2018-10-01 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

Re: [yocto] upgrading packages in yocto

2018-10-01 Thread Guilhem Marion
Hello, On 01/10/2018 08:21, Pandey, Kamal wrote: I want to upgrade some packages of poky/meta/recipes-graphics/ like weston_2.0.0.bb to weston_4.0.0.bb. Also I don't want any changes to be made in poky/meta layer. What is the best way of doing these kinds of upgradations. I think bbappend

Re: [yocto] upgrading packages in yocto

2018-10-01 Thread Nicolas Dechesne
On Mon, Oct 1, 2018 at 8:22 AM Pandey, Kamal wrote: > > I want to upgrade some packages of poky/meta/recipes-graphics/ like > weston_2.0.0.bb to weston_4.0.0.bb. Also I don't want any changes to be made > in poky/meta layer. What is the best way of doing these kinds of > upgradations. I think

[yocto] upgrading packages in yocto

2018-10-01 Thread Pandey, Kamal
I want to upgrade some packages of poky/meta/recipes-graphics/ like weston_2.0.0.bb to weston_4.0.0.bb. Also I don't want any changes to be made in poky/meta layer. What is the best way of doing these kinds of upgradations. I think bbappend here will create problems as the SRC_URI and other