aboutsummaryrefslogtreecommitdiffstats
path: root/sys/syz-extract
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2022-01-05 15:59:06 +0100
committerDmitry Vyukov <dvyukov@google.com>2022-01-11 16:30:08 +0100
commit00e03ebc7fb6cc11eb6364b9c34708f4e55f4828 (patch)
tree5a3d2374816e0096e3eb14d37cc511dfacd64e09 /sys/syz-extract
parent7ba329bce27b51ace8fe549772399aaee8695e33 (diff)
sys/syz-extract: fix linux extract
Currently fails with: <stdin>:7:10: fatal error: asm/msr.h: No such file or directory
Diffstat (limited to 'sys/syz-extract')
-rw-r--r--sys/syz-extract/linux.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/syz-extract/linux.go b/sys/syz-extract/linux.go
index 3fb4c5eb0..0e7d73b28 100644
--- a/sys/syz-extract/linux.go
+++ b/sys/syz-extract/linux.go
@@ -65,6 +65,7 @@ func (*linux) prepareArch(arch *Arch) error {
"asm/a.out.h": "",
"asm/prctl.h": "",
"asm/mce.h": "",
+ "asm/msr.h": "",
"uapi/asm/msr.h": "",
} {
fullPath := filepath.Join(arch.buildDir, "syzkaller", hdr)