aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2021-03-19 23:09:54 +0100
committerMarvin Borner2021-03-19 23:09:54 +0100
commitc97a50ba7baa70b40431594f410ca18e14af3b76 (patch)
tree12366515d6989dcfc79ec3250558e381e29fb4eb /run
parent63ed037fdbb04a4855531f5ce980d8517752f640 (diff)
Some things
Diffstat (limited to 'run')
-rwxr-xr-xrun4
1 files changed, 2 insertions, 2 deletions
diff --git a/run b/run
index 8a49737..27a7f5f 100755
--- a/run
+++ b/run
@@ -183,10 +183,10 @@ make_disasm() {
make_addr() {
printf "Info: Make sure that you've turned the debug build on (e.g. with MELVIX_DEBUG=1)\n\n"
if [ -z "$2" ]; then
- echo "Usage: './run addr kernel 0x50042'"
+ echo "Usage: './run addr kernel.elf 0x50042'"
exit 1
fi
- addr2line -e build/"$1".elf -f -p "$2"
+ addr2line -e build/"$1" -f -p "$2"
}
make_cloc() {