Simple script and config (type-safe) for building custom Linux kernels for Firecracker MicroVMs
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change stdin from 'null' to 'piped' in make process for better input handling

+1 -1
+1 -1
build.ts
··· 168 168 const nproc = await getNproc(); 169 169 const makeProcess = new Deno.Command("make", { 170 170 args: ["vmlinux", `-j${nproc}`], 171 - stdin: "null", 171 + stdin: "piped", 172 172 stdout: "inherit", 173 173 stderr: "inherit", 174 174 });