From 67db178c6f7e9f19103813b4901ad6de6ce2b1c4 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 3 May 2022 10:13:55 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Invoke=20nm=20properly?= 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 | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/chainboot/Makefile.toml b/bin/chainboot/Makefile.toml index e0e65ad..cc33c89 100644 --- a/bin/chainboot/Makefile.toml +++ b/bin/chainboot/Makefile.toml @@ -23,6 +23,9 @@ run_task = "zellij-config" env = { "KERNEL_BIN" = "${CHAINBOOT_BIN}", "QEMU_OPTS" = "${QEMU_OPTS} ${QEMU_DISASM_OPTS} ${QEMU_GDB_OPTS}", "TARGET_BOARD" = "rpi3", "TARGET_DTB" = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/targets/bcm2710-rpi-3-b-plus.dtb" } run_task = "zellij-config" +[tasks.nm] +disabled = true + [tasks.qemu] disabled = true diff --git a/bin/chainofcommand/Makefile.toml b/bin/chainofcommand/Makefile.toml index 0d4be57..a9940a2 100644 --- a/bin/chainofcommand/Makefile.toml +++ b/bin/chainofcommand/Makefile.toml @@ -28,6 +28,9 @@ disabled = true [tasks.zellij-cb-gdb] disabled = true +[tasks.nm] +disabled = true + [tasks.qemu] disabled = true diff --git a/nucleus/Makefile.toml b/nucleus/Makefile.toml index b625f1c..80dd79e 100644 --- a/nucleus/Makefile.toml +++ b/nucleus/Makefile.toml @@ -61,7 +61,7 @@ install_crate = { crate_name = "rustfilt", binary = "rustfilt", test_arg = ["--h [tasks.nm] dependencies = ["build", "kernel-binary", "install-nm", "install-rustfilt"] script = [ - "${NM} -- ${KERNEL_ELF} | sort -k 1 | rustfilt" + "${NM} ${KERNEL_ELF} | sort -k 1 | rustfilt" ] [tasks.sdcard]