diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-05-02 20:19:52 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-05-02 20:19:52 +0000 |
commit | 5817449f2de9a2d9792cb3db1e67ffa7ee5894d7 (patch) | |
tree | 72549390efee0dc1768067784087facc1e845d35 /EmbeddedPkg/Ebl | |
parent | f8181c90f443ae9c91f468d6256f89ed81ee7684 (diff) | |
download | edk2-platforms-5817449f2de9a2d9792cb3db1e67ffa7ee5894d7.tar.xz |
EmbeddedPkg/Ebl: Returned an error message when a command is not supported
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13266 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmbeddedPkg/Ebl')
-rw-r--r-- | EmbeddedPkg/Ebl/Main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/EmbeddedPkg/Ebl/Main.c b/EmbeddedPkg/Ebl/Main.c index e4879bcf97..f1665627aa 100644 --- a/EmbeddedPkg/Ebl/Main.c +++ b/EmbeddedPkg/Ebl/Main.c @@ -557,6 +557,8 @@ ProcessCmdLine ( // if any command fails stop processing CmdLine
break;
}
+ } else {
+ AsciiPrint ("The command '%a' is not supported.\n", Argv[0]);
}
}
}
|