Re: [yocto] Is it possible NOT to split kernel modules in multiple packages

2017-01-31 Thread Prasant J
On Fri, Jan 27, 2017 at 7:18 AM, Khem Raj wrote: > > > On 1/25/17 11:29 PM, Prasant J wrote: >> Hi, >> >> I'm using Morty release to create my custom BSP package for cortex-a5 >> based processor. >> >> I'm using my own custom kernel recipe that inherits kernel.bbclass >>

Re: [yocto] Empty "normal" package, filled dev and dbg packages, tr-50 lib

2017-01-31 Thread Paul Eggleton
On Wednesday, 1 February 2017 10:04:50 AM NZDT Paul Eggleton wrote: > What you really need to do is look in the install destination directory - > i.e. the "image" subdirectory under the work directory - you can find the > latter pretty easily if you're unsure: > > bitbake -e tr-50 | grep

Re: [yocto] Empty "normal" package, filled dev and dbg packages, tr-50 lib

2017-01-31 Thread Paul Eggleton
Hi Jakob, On Tuesday, 31 January 2017 5:53:47 PM NZDT Jakob Hasse wrote: > I still try to include the tr-50 library into my build, which is an > autotools manages library. The code is fetch from git by bitbake. > The good thing: it builds, the compilation of the library itself gives > no errors

[yocto] Empty "normal" package, filled dev and dbg packages, tr-50 lib

2017-01-31 Thread Jakob Hasse
Hello, I still try to include the tr-50 library into my build, which is an autotools manages library. The code is fetch from git by bitbake. The good thing: it builds, the compilation of the library itself gives no errors and after it I find the .so files several times in the build directory.

[linux-yocto] [linux-yocto 4.9 0/3] Fix the build errors when yaffs2 is enabled

2017-01-31 Thread Kevin Hao
All these build errors are caused by the API changes in the mainline kernel. Adjust the codes in yaffs2 to fix these errors. Kevin Hao (3): fs: yaffs2: adjust to the change of inode_change_ok() fs: yaffs2: switch to the generic xattr handler fs: yaffs2: fix the prototype of function

[linux-yocto] [PATCH 3/3] fs: yaffs2: fix the prototype of function yaffs_rename()

2017-01-31 Thread Kevin Hao
The "rename2" of i_op has been renamed to "rename" in commit 2773bf00aeb9("fs: rename "rename2" i_op to "rename""). We do what we have done in commit 1cd66c93ba8c("fs: make remaining filesystems use .rename2") for yaffs2 according to this change. Signed-off-by: Kevin Hao

[linux-yocto] [PATCH 1/3] fs: yaffs2: adjust to the change of inode_change_ok()

2017-01-31 Thread Kevin Hao
In commit cb8e1eef351b ("fs: Give dentry to inode_change_ok() instead of inode") the inode_change_ok() has been rename to setattr_prepare(), and one of the argument was also changed from inode to dentry. We adjust the invocation of inode_change_ok() in Yaffs2 according to this change.