[OE-core] [PATCH] package.bbclass: exclude packages as shlib providers

2018-07-17 Thread Oleksii Konoplitskyi via Openembedded-core
o set list of packages that are not candidates for shlib providers. Variable EXCLUDE_PACKAGES_FROM_SHLIBS is used, e.g.: EXCLUDE_PACKAGES_FROM_SHLIBS = "glibc-ptest glibc-mtest" Cc: Andrii Bordunov Signed-off-by: Oleksii Konoplitskyi --- Hi Richard, I have updated Andri

Re: [OE-core] [PATCH] initramfs-framework: add nfsrootfs module

2018-07-06 Thread Oleksii Konoplitskyi via Openembedded-core
ping On 15.06.18 18:42, Oleksii Konoplitskyi wrote: Hi Andre, Could you, please, check if all the features that we discussed in https://patchwork.openembedded.org/patch/149212/ are implemented in this patch? Best regards, Oleksii On 25.05.18 16:56, Oleksii Konoplitskyi wrote

Re: [OE-core] [PATCH] initramfs-framework: add nfsrootfs module

2018-06-15 Thread Oleksii Konoplitskyi via Openembedded-core
Hi Andre, Could you, please, check if all the features that we discussed in https://patchwork.openembedded.org/patch/149212/ are implemented in this patch? Best regards, Oleksii On 25.05.18 16:56, Oleksii Konoplitskyi wrote: nfsrootfs module mounts rootfs via nfs parsing "nfsroot

[OE-core] [PATCH] initramfs-framework: add nfsrootfs module

2018-05-25 Thread Oleksii Konoplitskyi
nfsrootfs module mounts rootfs via nfs parsing "nfsroot" and "ip" cmdline options. Signed-off-by: Oleksii Konoplitskyi --- .../initrdscripts/initramfs-framework/nfsrootfs| 48 ++ .../initrdscripts/initramfs-framework_1.0.bb | 7

Re: [OE-core] [PATCH] core-image-minimal-initramfs: prepare initramfs for NFS boot

2018-04-18 Thread Oleksii Konoplitskyi
t;$bootparam_rootflags,"     fi     bootparam_rootflags="${bootparam_rootflags}ro"     fi     if [ -n "$bootparam_rootflags" ]; then     flags="$flags -o$bootparam_rootflags"     fi     mount -t nfs ${flags} ${nfs_opts} ${location} ${ROOTFS_DIR} } Sho

Re: [OE-core] [PATCH] core-image-minimal-initramfs: prepare initramfs for NFS boot

2018-04-18 Thread Oleksii Konoplitskyi
t;$bootparam_rootflags,"     fi     bootparam_rootflags="${bootparam_rootflags}ro"     fi     if [ -n "$bootparam_rootflags" ]; then     flags="$flags -o$bootparam_rootflags"     fi     mount -t nfs ${flags} ${nfs_opts} ${location} ${ROOTFS_DIR} } Sho

Re: [OE-core] [PATCH] core-image-minimal-initramfs: prepare initramfs for NFS boot

2018-03-16 Thread Oleksii Konoplitskyi
y generic, whereas if it was integrated with the initramfs-framework, another module could take care of the driver / hardware specifics, and this module would just do the actual mounting of the ROOTFS. The remaining bits, like mount --move of /proc are also already part of initramfs-framework. That w

[OE-core] [PATCH] core-image-minimal-initramfs: prepare initramfs for NFS boot

2018-03-12 Thread Oleksii Konoplitskyi
e-igb" INITRAMFS_IMAGE_BUNDLE = "1" INITRAMFS_IMAGE = "core-image-minimal-initramfs" INITRAMFS_LOAD_KERNEL_MODULES is a space-separated list of modules that will be added to initramfs. Signed-off-by: Andrii Bordunov Signed-off-by: Oleksii Konoplitskyi ---