From 1674dc183afaf3d762ab01cb0010bd6421381b96 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 13 Mar 2026 00:31:23 +0100 Subject: [PATCH] make radare recipe accept an address --- nixos.just | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos.just b/nixos.just index 9fea880..e0590b0 100644 --- a/nixos.just +++ b/nixos.just @@ -85,10 +85,10 @@ remove-db: gdb module: gdb --tui {{ BUILD_DIR }}-{{ module }}/system.elf -[doc("Launch radare2 at os_main")] +[doc("Launch radare2")] [group("debug")] -radare module: - radare2 -AA -c "s dbg.os_main; pdf" {{ BUILD_DIR }}-{{ module }}/system.elf +radare module addr="dbg.os_main": + radare2 -AA -c "s {{ addr }}; pdf" {{ BUILD_DIR }}-{{ module }}/system.elf # =================================================================================================================== # # Just do it