diff options
| author | Sughosh Ganu <[email protected]> | 2025-07-03 12:13:07 +0530 |
|---|---|---|
| committer | Ilias Apalodimas <[email protected]> | 2025-07-03 11:34:10 +0300 |
| commit | ed004a260acdb196c8f36dffdb4c3b428f215616 (patch) | |
| tree | 74f98ad2665030a6e376e8dd89080b6669e06dc3 /include/efi_config.h | |
| parent | 9a64eecad675f99f1ddf14184433a46728f7e047 (diff) | |
cmd: eficonfig: add support for URI device path based boot options
The eficonfig command provides a menu based interface for maintenance
of the EFI boot options. Add support for adding a URI based boot
option. This boot option can then be used for HTTP boot.
Signed-off-by: Sughosh Ganu <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Tested-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'include/efi_config.h')
| -rw-r--r-- | include/efi_config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_config.h b/include/efi_config.h index d7c1601137e..23211e799fc 100644 --- a/include/efi_config.h +++ b/include/efi_config.h @@ -82,6 +82,7 @@ struct eficonfig_item { * @current_volume: pointer to the efi_simple_file_system_protocol * @dp_volume: pointer to device path of the selected device * @current_path: pointer to the selected file path string + * @uri: URI for HTTP Boot * @filepath_list: list_head structure for file path list * @file_selectred: flag indicates file selecting status */ @@ -89,6 +90,7 @@ struct eficonfig_select_file_info { struct efi_simple_file_system_protocol *current_volume; struct efi_device_path *dp_volume; u16 *current_path; + u16 *uri; struct list_head filepath_list; bool file_selected; }; |
