Skip to content

Commit 77ce253

Browse files
committed
image-balena: support zst compressed modules
Change-type: patch Signed-off-by: Joseph Kogut <[email protected]>
1 parent df352c7 commit 77ce253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meta-balena-common/classes/image-balena.bbclass

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ init_config_json() {
6969
def check_for_compressed_kernel_modules(modules_dir):
7070
for root, dirs, files in os.walk(modules_dir, topdown=True):
7171
for name in files:
72-
found_ko = name.endswith(".ko.gz") or name.endswith(".ko.xz")
72+
found_ko = name.endswith(".ko.gz") or name.endswith(".ko.xz") or name.endswith('.ko.zst')
7373
if found_ko:
7474
return found_ko
7575
return False

0 commit comments

Comments
 (0)