summaryrefslogtreecommitdiff
path: root/bootloader/Makefile.toml
diff options
context:
space:
mode:
authorVaze <vaze@vaze.dev>2026-05-27 13:18:52 +0200
committerVaze <vaze@vaze.dev>2026-05-27 13:18:52 +0200
commit407d34ca790ea224c79e17a5cbe33976bf02a6fc (patch)
tree19aa48b8e6a3c5c5d38e20f2696948a093f8e695 /bootloader/Makefile.toml
parent816f9b7cb300a7f3979b5f29b3677e84a3c28880 (diff)
Removed bootloader sub-project. ZenOS will focus on the kernel from now on. BOOTBOOT will be used as the only supported bootloader for now. Development of a custom bootloader might resume at a much later date.HEADmaster
Diffstat (limited to 'bootloader/Makefile.toml')
-rw-r--r--bootloader/Makefile.toml17
1 files changed, 0 insertions, 17 deletions
diff --git a/bootloader/Makefile.toml b/bootloader/Makefile.toml
deleted file mode 100644
index 0d76678..0000000
--- a/bootloader/Makefile.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[tasks.clean]
-command = "cargo"
-args = ["clean"]
-
-[tasks.build]
-command = "cargo"
-args = ["build", "--target", "x86_64-unknown-uefi"]
-
-[tasks.esp]
-command = "cp"
-args = ["target/x86_64-unknown-uefi/debug/bootloader.efi", "esp/efi/boot/bootx64.efi"]
-dependencies = ["build"]
-
-[tasks.run]
-command = "qemu-system-x86_64"
-args = ["-enable-kvm", "-drive", "if=pflash,format=raw,readonly=on,file=OVMF_CODE.4m.fd", "-drive", "if=pflash,format=raw,readonly=on,file=OVMF_VARS.4m.fd", "-drive", "format=raw,file=fat:rw:esp"]
-dependencies = ["esp"]