From d22eb31d1077e16836556deb0191055490cbb96f Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 28 Feb 2022 22:21:43 +0200 Subject: [PATCH] =?UTF-8?q?build:=20=F0=9F=9B=A0=20add=20`chainofcommand`?= =?UTF-8?q?=20target?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/chainboot/Makefile.toml | 3 +++ bin/chainofcommand/Makefile.toml | 3 +++ nucleus/Makefile.toml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/bin/chainboot/Makefile.toml b/bin/chainboot/Makefile.toml index 845736f..e0e65ad 100644 --- a/bin/chainboot/Makefile.toml +++ b/bin/chainboot/Makefile.toml @@ -6,6 +6,9 @@ CHAINBOOT_BIN = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target/chainboot.bin" env = { "BINARY_FILE" = "${CHAINBOOT_ELF}" } run_task = "custom-binary" +[tasks.chainofcommand] +disabled = true + [tasks.hopper] disabled = true diff --git a/bin/chainofcommand/Makefile.toml b/bin/chainofcommand/Makefile.toml index 2011b8f..0d4be57 100644 --- a/bin/chainofcommand/Makefile.toml +++ b/bin/chainofcommand/Makefile.toml @@ -2,6 +2,9 @@ command = "cargo" args = ["build"] +[tasks.chainofcommand] +dependencies = ["build"] + [tasks.test] command = "cargo" args = ["test"] diff --git a/nucleus/Makefile.toml b/nucleus/Makefile.toml index 0b1e5db..b625f1c 100644 --- a/nucleus/Makefile.toml +++ b/nucleus/Makefile.toml @@ -18,6 +18,9 @@ disabled = true env = { "QEMU_RUNNER_OPTS" = "${QEMU_SERIAL_OPTS} ${QEMU_GDB_OPTS}", "TARGET_DTB" = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/targets/bcm2710-rpi-3-b-plus.dtb" } extend = "qemu-runner" +[tasks.chainofcommand] +disabled = true + [tasks.zellij-nucleus] env = { "KERNEL_BIN" = "${KERNEL_BIN}" } run_task = "zellij-config"