From: Christophe Chapuis Date: Thu, 29 Apr 2021 13:41:27 +0000 (+0200) Subject: rootfs.py: find .ko.gz and .ko.xz kernel modules as well X-Git-Tag: 2021-04.1-hardknott~39 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=96a751b84d15480304b931264b9e5d07098c0a90;p=openembedded-core.git rootfs.py: find .ko.gz and .ko.xz kernel modules as well * 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 Signed-off-by: Christophe Chapuis Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie (cherry picked from commit 9c13ce05eae0f126eb150e48709e9bd06e9280fa) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 5f81023040..d634adda4e 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", ".ko.gz", ".ko.xz")) if found_ko: return found_ko return False