aboutsummaryrefslogtreecommitdiff
path: root/lib/debugcommands
diff options
context:
space:
mode:
authorTravis Geiselbrecht <geist@foobox.com>2014-11-07 13:25:42 -0800
committerTravis Geiselbrecht <geist@foobox.com>2014-11-21 15:50:18 -0800
commitee9d2927ad611fdcf639904620e76dd7adb99d27 (patch)
tree5183c74367602bdcdb9915d1cea3abdee17eb7f4 /lib/debugcommands
parent2a7913e43e7bc865677e3493c0b4d8e0ea0d7b40 (diff)
downloadcommon-ee9d2927ad611fdcf639904620e76dd7adb99d27.tar.gz
[arm] add ability to pass and generically read up to 4 boot args from whoever loaded lk
-Extend arch_chain_load() to pass 4 args
Diffstat (limited to 'lib/debugcommands')
-rw-r--r--lib/debugcommands/debugcommands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugcommands/debugcommands.c b/lib/debugcommands/debugcommands.c
index e2bb7ae6..5c6fd940 100644
--- a/lib/debugcommands/debugcommands.c
+++ b/lib/debugcommands/debugcommands.c
@@ -282,7 +282,7 @@ static int cmd_chain(int argc, const cmd_args *argv)
return -1;
}
- arch_chain_load((void *)argv[1].u);
+ arch_chain_load((void *)argv[1].u, 0, 0, 0, 0);
return 0;
}