Running 'jtag -n' with no arguments drops through to a shell prompt and does not got to the command line.
The specific problem is in src/jtag.c line 502 where 'go' is checked before printing the command line prompt and running jtag_readline_loop(). In the case of specifying --norc with no command line script file, go never gets set to one.
--- jtag.c (revision 995)
+++ jtag.c (working copy)
@@ -380,6 +380,7 @@
case 'n':
norc = 1;
+ go = 1; /* set so that in the absence of a command line file will go to prompt */
break;
case 'h':
fixes this problem.
Logged In: YES
user_id=478715
Originator: NO
Hi, thanks, fixed in revision #999