Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Register a new action for users to create GUIDs with names #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
define_mm_locate_protocol_types,
define_smm_locate_protocol_types,
define_mm_handle_protocol_types,
define_smm_handle_protocol_types
define_smm_handle_protocol_types,
lookup_and_define_guid
)

from .system_table import propagate_function_param_types, set_windows_bootloader_type
Expand Down Expand Up @@ -110,4 +111,5 @@ def run(self):
Task(bv).start()


PluginCommand.register("Resolve EFI Protocols", "Automatically resolve usage of EFI protocols", resolve_efi)
PluginCommand.register("EFI Resolver\Resolve EFI Protocols", "Automatically resolve usage of EFI protocols", resolve_efi)
PluginCommand.register_for_address("EFI Resolver\Define GUID", "Lookup the database and define GUID at the given address", lookup_and_define_guid)