Skip to content

Commit

Permalink
Correct the ESC behavior in ConfigApp (#429)
Browse files Browse the repository at this point in the history
## Description

The ESC behavior is not correct in ConfigApp, the string claims a reboot will occur, but the actual behavior is to return to the main menu.

- [ ] Impacts functionality?
- [ ] Impacts security?
- [ ] Breaking change?
- [ ] Includes tests?
- [ ] Includes documentation?

## How This Was Tested

Boot to ConfigApp and observe ESC help string.

## Integration Instructions

N/A
  • Loading branch information
ScottieKuo authored Dec 10, 2024
1 parent 3be6140 commit 6fc0a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SetupDataPkg/ConfApp/BootOptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CONST ConfAppKeyOptions StaticBootOptions[STATIC_BOOT_OPTIONS] = {
{
.KeyName = L"ESC",
.KeyNameTextAttr = EFI_TEXT_ATTR (EFI_YELLOW, EFI_BLACK),
.Description = L"Exit this menu and reboot system.",
.Description = L"Return to main menu.",
.DescriptionTextAttr = EFI_TEXT_ATTR (EFI_WHITE, EFI_BLACK),
.UnicodeChar = CHAR_NULL,
.ScanCode = SCAN_ESC,
Expand Down

0 comments on commit 6fc0a9c

Please sign in to comment.