From c7c58f2c12276d2e629b5b9d90569efe13be658f Mon Sep 17 00:00:00 2001 From: Hrutvik Kanabar Date: Wed, 7 Sep 2022 12:18:47 +0000 Subject: tools/syz-imagegen: update `ntfs` image generation `./syz-imagegen -fs ntfs` fails for two images which use the `-s 256 -c 256` option. These are indexed 0 and 1 - but no syz_mount_image_ntfs_{0,1} images exist on the GitHub repo, and a quick `git log --full-history` suggests they never did. This commit removes the `-s 256 -c 256` option so that a call of `syz_imagegen` succeeds without any errors. Images will be regenerated in a future commit. --- tools/syz-imagegen/imagegen.go | 1 - 1 file changed, 1 deletion(-) (limited to 'tools') diff --git a/tools/syz-imagegen/imagegen.go b/tools/syz-imagegen/imagegen.go index b5e1f6a69..1e44f540f 100644 --- a/tools/syz-imagegen/imagegen.go +++ b/tools/syz-imagegen/imagegen.go @@ -180,7 +180,6 @@ var fileSystems = []FileSystem{ MkfsFlags: []string{"-f", "-F", "-L", "syzkaller"}, MkfsFlagCombinations: [][]string{ { - "-s 256 -c 256", "-s 256 -c 2048", "-s 512 -c 1024", "-s 512 -c 4096", -- cgit mrf-deployment