From dd8fa7b2240ece698be6604a8fa8ce05f82ce0b0 Mon Sep 17 00:00:00 2001 From: Hrutvik Kanabar Date: Thu, 27 Oct 2022 14:32:27 +0000 Subject: executor: update to match the new `syz_mount_image` call Update the executor to handle the new `syz_mount_image`/`syz_part_table` pseudo-syscalls. It now expects compressed images, and decompresses them using the new `common_zlib.h` header file before mounting. --- pkg/csource/gen.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/csource/gen.go') diff --git a/pkg/csource/gen.go b/pkg/csource/gen.go index 80cd056ed..291480115 100644 --- a/pkg/csource/gen.go +++ b/pkg/csource/gen.go @@ -44,6 +44,7 @@ func main() { "kvm.h", "kvm_amd64.S.h", "kvm_ppc64le.S.h", + "common_zlib.h", } data = replaceIncludes(executorFilenames, "../../executor/", data) androidFilenames := []string{ -- cgit mrf-deployment