From cd91002fe9ce234e2b40f6981e84873c7ba7289f Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Fri, 26 Jul 2024 18:33:09 -0700 Subject: [PATCH] Update linux makefile wiht path to wally bin --- linux/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/Makefile b/linux/Makefile index 6decffe7e..d195dfa41 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -91,11 +91,11 @@ disassemble: $(DIS)/%.objdump: $(IMAGES)/%.elf riscv64-unknown-elf-objdump -DS $< >> $@ - extractFunctionRadix.sh $@ + $(WALLY)/bin/extractFunctionRadix.sh $@ $(DIS)/%.objdump: $(IMAGES)/% riscv64-unknown-elf-objdump -S $< >> $@ - extractFunctionRadix.sh $@ + $(WALLY)/bin/extractFunctionRadix.sh $@ $(IMAGES)/vmlinux: linuxDir=$$(find $(BUILDROOT)/output/build -maxdepth 2 -type d -regex ".*/linux-[0-9]+\.[0-9]+\.[0-9]+$$") ;\