diff options
author | Matthias Welwarsky <matthias.welwarsky@sysgo.com> | 2016-11-11 14:39:09 +0100 |
---|---|---|
committer | Paul Fertser <fercerpav@gmail.com> | 2016-12-08 12:24:11 +0000 |
commit | 53a936afc0092f4a65975d35bab0e10944fad3db (patch) | |
tree | 351833831b3d652036bc85d07a998ed8df831f76 /src/rtos/rtos.c | |
parent | ab9d92490cf37fb4cbb394f85d7c8385474dff3f (diff) | |
download | riscv-openocd-53a936afc0092f4a65975d35bab0e10944fad3db.zip riscv-openocd-53a936afc0092f4a65975d35bab0e10944fad3db.tar.gz riscv-openocd-53a936afc0092f4a65975d35bab0e10944fad3db.tar.bz2 |
Add -defer-examine option to target create command
The '-defer-examine' option to target create allows declaring targets
that are present on the chain, but not fully functional. They will
be skipped by the initial arp_examine as well as arp_examine after
reset.
Manual examine using 'arp_examine' is needed to examine them, with the
idea that some kind of actions is neeed to bring them to a state where
examine will succeed (if at all possible).
In order to allow value less options to target command, I had to relax
the goi.argc check in jim_target_configure().
Change-Id: I9bf4e8d27eb6476dd9353d15f48965a8cfd5c122
Signed-off-by: Esben Haabendal <esben@haabendal.dk>
Signed-off-by: Matthias Welwarsky <matthias.welwarsky@sysgo.com>
Reviewed-on: http://openocd.zylin.com/3076
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/rtos/rtos.c')
-rw-r--r-- | src/rtos/rtos.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c index 448c49c..aa8efbe 100644 --- a/src/rtos/rtos.c +++ b/src/rtos/rtos.c @@ -104,6 +104,7 @@ int rtos_create(Jim_GetOptInfo *goi, struct target *target) int x; const char *cp; struct Jim_Obj *res; + int e; if (!goi->isconfigure && goi->argc != 0) { Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "NO PARAMS"); @@ -112,7 +113,9 @@ int rtos_create(Jim_GetOptInfo *goi, struct target *target) os_free(target); - Jim_GetOpt_String(goi, &cp, NULL); + e = Jim_GetOpt_String(goi, &cp, NULL); + if (e != JIM_OK) + return e; if (0 == strcmp(cp, "auto")) { /* Auto detect tries to look up all symbols for each RTOS, |