summaryrefslogtreecommitdiffstats
path: root/EmbeddedPkg
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-05-02 20:19:52 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-05-02 20:19:52 +0000
commit5817449f2de9a2d9792cb3db1e67ffa7ee5894d7 (patch)
tree72549390efee0dc1768067784087facc1e845d35 /EmbeddedPkg
parentf8181c90f443ae9c91f468d6256f89ed81ee7684 (diff)
downloadedk2-5817449f2de9a2d9792cb3db1e67ffa7ee5894d7.tar.gz
edk2-5817449f2de9a2d9792cb3db1e67ffa7ee5894d7.tar.bz2
edk2-5817449f2de9a2d9792cb3db1e67ffa7ee5894d7.zip
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')
-rw-r--r--EmbeddedPkg/Ebl/Main.c2
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]);
}
}
}