diff options
author | Jordan Crouse <jordan.crouse@amd.com> | 2008-05-20 20:16:34 +0000 |
---|---|---|
committer | Jordan Crouse <jordan.crouse@amd.com> | 2008-05-20 20:16:34 +0000 |
commit | 98cc0566ca958310e76b5242f7d49c1637bf0533 (patch) | |
tree | 0ed6c4faec718f0b71209ef0943f225c006fee02 /payloads/coreinfo/coreinfo.c | |
parent | 9b1c7c16451fc8bf12a20fe61a645b14216b3229 (diff) |
coreinfo: Use the ESC key to exit the payload
Enable the ESC key to close coreinfo - useful if you are using a chooser
and want to return to it.
Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3340 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/coreinfo/coreinfo.c')
-rw-r--r-- | payloads/coreinfo/coreinfo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index f7e8d88149..193da3d2d4 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -256,6 +256,8 @@ static void loop(void) } } + if (key == 0x1B) + return; handle_category_key(&categories[curwin], key); } |