summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Library/UefiShellDriver1CommandsLib
diff options
context:
space:
mode:
authorTapan Shah <tapandshah@hp.com>2014-08-29 20:37:32 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2014-08-29 20:37:32 +0000
commit376e759308c07c98b7b26d1291f5f78677280e00 (patch)
tree493fc6d6d4efa3974afd063f0f7b8e7684fd3037 /ShellPkg/Library/UefiShellDriver1CommandsLib
parent4bed6d8e5ddc654693582978c29f27bef0d46808 (diff)
downloadedk2-376e759308c07c98b7b26d1291f5f78677280e00.tar.gz
edk2-376e759308c07c98b7b26d1291f5f78677280e00.tar.bz2
edk2-376e759308c07c98b7b26d1291f5f78677280e00.zip
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
Diffstat (limited to 'ShellPkg/Library/UefiShellDriver1CommandsLib')
-rw-r--r--ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c5
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);
}