Re: [linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread Bruce Ashfield
both patches are now merged Bruce On 06/19/2018 03:58 AM, He Zhe wrote: i_version in struct inode has changed to atomic64_t in mainline kernel. This patch handles i_version with proper atomic API. Signed-off-by: He Zhe --- fs/yaffs2/yaffs_vfs.c | 8 +--- 1 file changed, 5

[yocto] Minutes: Yocto Project Technical Team Meeting

2018-06-19 Thread Jolley, Stephen K
Attendees: Armin, Joshua, Bruce, Nick, Mark, Sabastian, Matt, Alejandro, YP Status: • YP 2.3.4 (Pyro) rc1 is built and in QA see: https://wiki.yoctoproject.org/wiki/2.3_QA_Status it is at 92% complete. It most likely should be released this week. • YP 2.2.4 (Morty)

[yocto] checkroot.sh and mountall.sh Krogoth

2018-06-19 Thread Mauro Ziliani
Hi all. I'm looking inside the boot sequence of Yocto Krogoth in my imx6dlsabresd. The boot sequence runned is in S level with this order S03mountall.sh S06chechroot.sh in /etc/default/rcS I setup ENABLE_ROOTFS_FSCK=yes FSCKFIX=yes I coverted an ext2 to ext4 After upgrade the system

Re: [linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread He Zhe
This is for linux-yocto-dev and v4.17+. Zhe On 2018年06月19日 15:58, He Zhe wrote: > i_version in struct inode has changed to atomic64_t in mainline kernel. > This patch handles i_version with proper atomic API. > > Signed-off-by: He Zhe > --- > fs/yaffs2/yaffs_vfs.c | 8 +--- > 1 file

Re: [linux-yocto] [PATCH 2/2] yaffs: Fix build failure by removing unused members of erase_info

2018-06-19 Thread He Zhe
This is for linux-yocto-dev and v4.17+. Zhe On 2018年06月19日 15:58, He Zhe wrote: > A few members of struct erase_info have been removed and no longer > used in mainline by the following commits. This patches removes > related useless initialization. > > 8f347c4232d5fc097599b711a3385722a6834005 >

[linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread He Zhe
i_version in struct inode has changed to atomic64_t in mainline kernel. This patch handles i_version with proper atomic API. Signed-off-by: He Zhe --- fs/yaffs2/yaffs_vfs.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fs/yaffs2/yaffs_vfs.c b/fs/yaffs2/yaffs_vfs.c

[linux-yocto] [PATCH 2/2] yaffs: Fix build failure by removing unused members of erase_info

2018-06-19 Thread He Zhe
A few members of struct erase_info have been removed and no longer used in mainline by the following commits. This patches removes related useless initialization. 8f347c4232d5fc097599b711a3385722a6834005 "mtd: Unconditionally update ->fail_addr and ->addr in part_erase()"