summaryrefslogtreecommitdiffstats
path: root/src/usr/pxemenu.c
diff options
context:
space:
mode:
authorMichael Brown2009-02-17 08:35:57 +0100
committerMichael Brown2009-02-17 08:35:57 +0100
commitcff419148c80012c135aea26977657e9629221dd (patch)
treeecc9fa9fa06ad0126feb9ed4a04e43a97056bf45 /src/usr/pxemenu.c
parent[icmp] Add support for responding to pings (diff)
downloadipxe-cff419148c80012c135aea26977657e9629221dd.tar.gz
ipxe-cff419148c80012c135aea26977657e9629221dd.tar.xz
ipxe-cff419148c80012c135aea26977657e9629221dd.zip
[pxe] Allow Escape to abort PXE menu selections
Other vendor PXE stacks tend to allow the Escape key to be used to abort menu selection. Allow Escape (as well as Ctrl-C) to abort selection.
Diffstat (limited to 'src/usr/pxemenu.c')
-rw-r--r--src/usr/pxemenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/pxemenu.c b/src/usr/pxemenu.c
index 911d4e9a..793cb624 100644
--- a/src/usr/pxemenu.c
+++ b/src/usr/pxemenu.c
@@ -247,7 +247,7 @@ static int pxe_menu_select ( struct pxe_menu *menu ) {
if ( ( key == CR ) || ( key == LF ) ) {
pxe_menu_draw_item ( menu, menu->selection, 1 );
break;
- } else if ( key == CTRL_C ) {
+ } else if ( ( key == CTRL_C ) || ( key == ESC ) ) {
rc = -ECANCELED;
break;
} else if ( key == KEY_UP ) {
@@ -306,7 +306,7 @@ static int pxe_menu_prompt_and_select ( struct pxe_menu *menu ) {
/* Display menu */
printf ( "\n" );
return pxe_menu_select ( menu );
- } else if ( key == CTRL_C ) {
+ } else if ( ( key == CTRL_C ) || ( key == ESC ) ) {
/* Abort */
rc = -ECANCELED;
break;