View Single Post
Posts: 13 | Thanked: 12 times | Joined on Oct 2011
#365
Originally Posted by law138 View Post
I'm sorry rain I'm slow what do you mean by -vs-- ?

In linux world you can give command line arguments with one or two hyphens. In your error message you for example see that you can either give "-V" or "--version", which both print the application version.

Now, you have given command line argument

Code:
-flash-only=kernel
but from the error message you see that the program is actually expecting



Code:
--flash-only=ARG
So you lack one hyphen.