Changeset 105670 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/DriverSampleDxe
- Timestamp:
- Aug 14, 2024 1:16:30 PM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 164367
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-159268 /vendor/edk2/current 103735-103757,103769-103776,129194-164365
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/DriverSampleDxe/DriverSample.c
r99404 r105670 859 859 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this 860 860 driver. 861 @retval EFI_DEVICE_ERROR If value is 44, return error for testing. 861 862 862 863 **/ … … 1064 1065 if (EFI_ERROR (Status)) { 1065 1066 return Status; 1067 } 1068 1069 if (PrivateData->Configuration.QuestionApply == 44) { 1070 // Return error for verify the error handling of caller. 1071 return EFI_DEVICE_ERROR; 1066 1072 } 1067 1073 … … 1600 1606 break; 1601 1607 1608 case 0x1253: 1609 // 1610 // User change the value of "Question apply test". 1611 // 1612 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_QUESTION_APPLY; 1613 break; 1614 1602 1615 case 0x1231: 1603 1616 // -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/DriverSampleDxe/NVDataStruc.h
r99404 r105670 96 96 UINT8 QuestionXUefiKeywordRestStyle; 97 97 UINT8 QuestionNonXUefiKeywordRestStyle; 98 UINT8 QuestionApply; 98 99 } DRIVER_SAMPLE_CONFIGURATION; 99 100 -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr
r89983 r105670 514 514 endnumeric; 515 515 516 numeric varid = MyIfrNVData.QuestionApply, 517 questionid = 0x1253, 518 prompt = STRING_TOKEN(STR_QUESTION_APPLY_TEST_PROMPT), 519 help = STRING_TOKEN(STR_QUESTION_APPLY_TEST_HELP), 520 flags = INTERACTIVE, 521 minimum = 0, 522 maximum = 255, 523 default = 19, 524 endnumeric; 525 516 526 text 517 527 help = STRING_TOKEN(STR_POPUP_TEST_HELP), -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Universal/DriverSampleDxe/VfrStrings.uni
r89983 r105670 270 270 #string STR_SUBMITTED_CALLBACK_TEST_HELP #language en-US "Change the value and press F10 to submit will pop up a dialogue to show SUBMITTED Callback has been triggered" 271 271 #language fr-FR "Change the value and press F10 to submit will pop up a dialogue to show SUBMITTED Callback has been triggered" 272 #string STR_QUESTION_APPLY_TEST_PROMPT #language en-US "Question apply test" 273 #language fr-FR "Question apply test" 274 #string STR_QUESTION_APPLY_TEST_HELP #language en-US "Change the value and it will be applied automaticlly. If set to 44, then return failed." 275 #language fr-FR "Change the value and it will be applied automaticlly. If set to 44, then return failed." 272 276 #string STR_POPUP_TEST_PROMPT #language en-US "Select it to invoke Hii Popup Protocol" 273 277 #language fr-FR "Select it to invoke Hii Popup Protocol"
Note:
See TracChangeset
for help on using the changeset viewer.