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]