From e90b78c8bf7ab77790defe9b0877c00a82886f13 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 24 Feb 2019 00:00:36 +0200 Subject: [PATCH] Add openocd target --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 09aa638..36b0b89 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,8 @@ QEMU_OPTS = -M raspi3 -d in_asm,int QEMU_SERIAL = -serial null -serial stdio QEMU = /usr/local/Cellar/qemu/HEAD-3365de01b5-custom/bin/qemu-system-aarch64 +OPENOCD = /usr/local/openocd-20ceec69/bin/openocd + .PHONY: all qemu clippy clean objdump nm all: kernel8.img @@ -78,3 +80,6 @@ nm: hopper: all hopperv4 -e kernel8.img -R --base-address 0x80000 --entrypoint 0x80000 --file-offset 0 --aarch64 +openocd: + $(OPENOCD) -f interface/jlink.cfg -f ./doc/rpi3_jlink.cfg +