summaryrefslogtreecommitdiff
path: root/ShellPkg/DynamicCommand/HttpDynamicCommand/Http.uni
AgeCommit message (Collapse)AuthorFilesLines
2026-03-02ShellPkg: fix UNI string formatting and line endings to match UNI SpecAlexander Gryanko1-6/+6
Changes include: * Added missing \r\n line endings inside string literals * Fixed inconsistent indentation in multi-line string entries * Removed duplicated #language en-US directive * Aligned string formatting to match the UNI specification Updated files: ShellPkg/DynamicCommand/HttpDynamicCommand/Http.uni ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.uni The issues were identified during testing of the parser https://github.com/xpahos/edk2-idea. Signed-off-by: Alexander Gryanko <xpahos@gmail.com>
2020-09-30ShellPkg/DynamicCommand: add HttpDynamicCommandVladimir Olovyannikov1-0/+117
Introduce an http client utilizing EDK2 HTTP protocol, to allow fast image downloading from http/https servers. HTTP download speed is usually faster than tftp. The client is based on the same approach as tftp dynamic command, and uses the same UEFI Shell command line parameters. This makes it easy integrating http into existing UEFI Shell scripts. Note that to enable HTTP download, feature Pcd gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections must be set to TRUE. BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2860 Signed-off-by: Vladimir Olovyannikov <vladimir.olovyannikov@broadcom.com> Cc: Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Zhichao Gao <zhichao.gao@intel.com> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com> Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Nd <nd@arm.com> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com> Tested-by: Laszlo Ersek <lersek@redhat.com>