metropolis/node: move misplaced packages out of core
abloader, bios_bootcode and minit don't run as part of the core process,
so it doesn't make sense to have them in //metropolis/node/core.
This changes moves these three to //metropolis/node.
Change-Id: I908efb311a138f07a9f1de8e3c23437ff00131ee
Reviewed-on: https://review.monogon.dev/c/monogon/+/4196
Reviewed-by: Tim Windelschmidt <tim@monogon.tech>
Tested-by: Jenkins CI
diff --git a/metropolis/node/bios_bootcode/BUILD.bazel b/metropolis/node/bios_bootcode/BUILD.bazel
new file mode 100644
index 0000000..55577a4
--- /dev/null
+++ b/metropolis/node/bios_bootcode/BUILD.bazel
@@ -0,0 +1,17 @@
+load("//metropolis/node/bios_bootcode/genlogo:def.bzl", "gen_logo")
+
+gen_logo(
+ name = "logo.asm",
+ logo = ":logo.png",
+)
+
+genrule(
+ name = "bios_bootcode",
+ srcs = [
+ ":boot.asm",
+ ":logo.asm",
+ ],
+ outs = ["boot.bin"],
+ cmd = "nasm -d LOGO=$(location :logo.asm) $(location :boot.asm) -f bin -o $@",
+ visibility = ["//visibility:public"],
+)