1
0

Do not append .ko suffix for exploits

此提交包含在:
2018-10-07 17:25:44 +00:00
父節點 4d6caef219
當前提交 4876c01b06

查看文件

@@ -142,7 +142,10 @@ func build(tmp string, ka artifact, ki kernelInfo) (outPath, output string, err
return
}
outPath = tmpSourcePath + "/" + target + ".ko"
outPath = tmpSourcePath + "/" + target
if ka.Type == KernelModule {
outPath += ".ko"
}
kernel := "/lib/modules/" + ki.KernelRelease + "/build"