[yocto] [meta-selinux][PATCH] To fix ERROR: No recipes available for: /home/tperrot/dev/oe-build-easy/combination/meta-selinux/recipes-extended/net-tools/net-tools_1.60-25.bbappend The version of the

2015-09-09 Thread Thomas Perrot
Signed-off-by: Thomas Perrot --- .../net-tools/{net-tools_1.60-25.bbappend => net-tools_1.60-%.bbappend} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename recipes-extended/net-tools/{net-tools_1.60-25.bbappend => net-tools_1.60-%.bbappend} (100%) diff --git

Re: [yocto] [meta-selinux][PATCH] To fix ERROR: No recipes available for: /home/tperrot/dev/oe-build-easy/combination/meta-selinux/recipes-extended/net-tools/net-tools_1.60-25.bbappend The version of

2015-09-09 Thread Joe MacDonald
Hi Thomas, Thanks for the update, but I had already sent out a patch for review for this yesterday: https://www.mail-archive.com/yocto@yoctoproject.org/msg25655.html since it's obviously a blocking issue for anyone building meta-selinux now, I've merged and pushed it. -J. [[yocto]

Re: [yocto] [EDT][prelink-cross] possible memory leak in opd_size

2015-09-09 Thread Mark Hatle
I'm finally getting caught up on these items. I've looked at this, the function in question is only used on arch-ia64. I don't have any way to test arch-ia64, nor do I think it's used much anymore (especially in the embedded space). So I'm going to be skipping this particular patch -- unless

[linux-yocto] [PATCH 1/2] yaffs2: replace f_dentry to f_path.dentry

2015-09-09 Thread Yang Shi
Upstream commit 78d28e651f97866d608d9b41f8ad291e65d47dd5 ("kill f_dentry macro") removed f_dentry from struct file, so replace it to f_path.dentry to fix the build failure. Signed-off-by: Yang Shi --- fs/yaffs2/yaffs_vfs.c | 26 +- 1 file changed,

[yocto] [PATCH] linux-firmware: split out bcm4354 firmware

2015-09-09 Thread Romain Perier
Signed-off-by: Romain Perier --- Note: This firmware is required by some devices like rockchip-based chromebooks meta/recipes-kernel/linux-firmware/linux-firmware_git.bb | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git

[linux-yocto] [V2] Fix yaffs2 build failure on 4.1 kernel

2015-09-09 Thread Yang Shi
Fix yaffs2 build failure on 4.1 kernel and bring in missed patch. Yang Shi (2): yaffs2: replace f_dentry to f_path.dentry yaffs2: remove read and write methods Zhang Xiao (1): fs/yaffs2: Fix a judgement logic for ACL operations fs/yaffs2/yaffs_vfs.c | 30

[linux-yocto] [PATCH 1/3] yaffs2: replace f_dentry to f_path.dentry

2015-09-09 Thread Yang Shi
Upstream commit 78d28e651f97866d608d9b41f8ad291e65d47dd5 ("kill f_dentry macro") removed f_dentry from struct file, so replace it to f_path.dentry to fix the build failure. Signed-off-by: Yang Shi --- fs/yaffs2/yaffs_vfs.c | 26 +- 1 file changed,

[linux-yocto] [PATCH 3/3] fs/yaffs2: Fix a judgement logic for ACL operations

2015-09-09 Thread Yang Shi
From: Zhang Xiao Currently yaffs doesn't support ACL thus all related operations should return error. While the judgement on ACL operation miss a "!" thus cause this mechanism failed. Add a "!" to fix it. Signed-off-by: Zhang Xiao ---

[linux-yocto] [PATCH 2/3] yaffs2: remove read and write methods

2015-09-09 Thread Yang Shi
Upstream commit 5d5d568975307877e9195f5305f4240e506a2807 ("make new_sync_{read,write}() static") removed read and write methods from drivers and filesystems, remove them from yaffs2 to avoid build failure. Signed-off-by: Yang Shi --- fs/yaffs2/yaffs_vfs.c | 2 -- 1 file