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

refactor: remove redundant cleanup commands in build process

-5
-5
build.ts
··· 150 150 151 151 await run(["rm", "-rf", "Documentation/Kbuild"]); 152 152 await run(["make", "mrproper"]); 153 - await run([ 154 - "sh", 155 - "-c", 156 - "rm -rf include/uapi/linux/netfilter/xt_* include/uapi/linux/netfilter_ipv4/ipt_*.h include/uapi/linux/netfilter_ipv6/ip6t_*.h net/netfilter/xt_*.c rm -f tools/memory-model/litmus-tests", 157 - ]); 158 153 159 154 await run(["git", "checkout", "-f", REF]); 160 155