Ignore this for now, something else seems to be still broken. Will send v2 later.
On Thu, Apr 29, 2021 at 2:05 PM Martin Jansa via lists.openembedded.org <[email protected]> wrote: > From: Christophe Chapuis <[email protected]> > > * with xz PACKAGECONFIG enabled in kmod and xz module compression enabled > in kernel > the do_rootfs task doesn't run depmod in the image, because it thinks > there are no modules: > NOTE: No Kernel Modules found, not running depmod > > Signed-off-by: Martin Jansa <[email protected]> > Signed-off-by: Christophe Chapuis <[email protected]> > --- > meta/lib/oe/rootfs.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py > index 5f81023040..e4de0bfddf 100644 > --- a/meta/lib/oe/rootfs.py > +++ b/meta/lib/oe/rootfs.py > @@ -305,7 +305,7 @@ class Rootfs(object, metaclass=ABCMeta): > def _check_for_kernel_modules(self, modules_dir): > for root, dirs, files in os.walk(modules_dir, topdown=True): > for name in files: > - found_ko = name.endswith(".ko") > + found_ko = name.endswith(".ko") or > name.endswith(".ko.gz") or name.endswith(".ko.xz") > if found_ko: > return found_ko > return False > -- > 2.30.2 > > > > >
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#151096): https://lists.openembedded.org/g/openembedded-core/message/151096 Mute This Topic: https://lists.openembedded.org/mt/82453426/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
