We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df352c7 commit 77ce253Copy full SHA for 77ce253
meta-balena-common/classes/image-balena.bbclass
@@ -69,7 +69,7 @@ init_config_json() {
69
def check_for_compressed_kernel_modules(modules_dir):
70
for root, dirs, files in os.walk(modules_dir, topdown=True):
71
for name in files:
72
- found_ko = name.endswith(".ko.gz") or name.endswith(".ko.xz")
+ found_ko = name.endswith(".ko.gz") or name.endswith(".ko.xz") or name.endswith('.ko.zst')
73
if found_ko:
74
return found_ko
75
return False
0 commit comments