blob: 3829f96d9ae31637e59384c88d8d3b3ebe50e37f [file] [log] [blame]
genrule(
name = "bzImage",
srcs = [
"@linux//:all",
"linux-smalltown.config",
],
outs = [
"bzImage",
],
cmd = """
DIR=external/linux
mkdir $$DIR/.bin
cp $(location linux-smalltown.config) $$DIR/.config
(cd $$DIR && make -j $$(nproc) >/dev/null)
cp $$DIR/arch/x86/boot/bzImage $(RULEDIR)
""",
visibility = ["//visibility:public"],
)