diff options
author | Tapan Shah <tapandshah@hp.com> | 2014-08-29 20:37:32 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-08-29 20:37:32 +0000 |
commit | 376e759308c07c98b7b26d1291f5f78677280e00 (patch) | |
tree | 493fc6d6d4efa3974afd063f0f7b8e7684fd3037 | |
parent | 4bed6d8e5ddc654693582978c29f27bef0d46808 (diff) | |
download | edk2-platforms-376e759308c07c98b7b26d1291f5f78677280e00.tar.xz |
Add CTRL+C support for ‘dh’ command.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tapan Shah <tapandshah@hp.com>
Reviewed-By: Jaben Carsey <jaben.carsey@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15995 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c b/ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c index 29801949d3..ca72a9f059 100644 --- a/ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c +++ b/ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c @@ -1,6 +1,7 @@ /** @file
Main file for Dh shell Driver1 function.
+ Copyright (c) 2014, Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -751,6 +752,10 @@ DoDhForHandleList( DriverInfo,
TRUE
);
+ if (ShellGetExecutionBreakFlag ()) {
+ ShellStatus = SHELL_ABORTED;
+ break;
+ }
}
return (ShellStatus);
}
|