From f07f1301324409b57d5ae72babdd436bb74ebaee Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 12 Nov 2020 15:20:03 +0200 Subject: [PATCH] Add comments to justfile commands --- Justfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Justfile b/Justfile index df1e2b2..9e35867 100644 --- a/Justfile +++ b/Justfile @@ -1,7 +1,9 @@ qemu: + # Build and run kernel in QEMU cargo make qemu device: + # Build and write kernel to an SD Card cargo make sdcard build: @@ -9,27 +11,34 @@ build: cargo make build clean: + # Clean project cargo make clean rm -f kernel8 kernel8.img clippy: + # Run clippy checks cargo make clippy test: + # Run tests in QEMU cargo make test alias disasm := hopper hopper: + # Build and disassemble kernel cargo make hopper alias ocd := openocd openocd: + # Start openocd (by default connected via JTAG to a target device) cargo make openocd gdb: + # Build and run kernel in GDB using openocd or QEMU as target (gdb port 5555) cargo make gdb nm: + # Build and print all symbols in the kernel cargo make nm