├── DeviceTree ├── DevicetreeStrings.uni ├── devicetree.c ├── devicetree.h └── devicetree.inf ├── EDK_Snapshot.txt ├── EfiCompress ├── Compress.h ├── CompressMain.c ├── CompressStrings.uni ├── compress.c └── compress.inf ├── EfiDecompress ├── Decompress.c ├── Decompress.h ├── Decompress.inf └── DecompressStrings.uni ├── IfConfig ├── IfConfig.c ├── IfConfig.h ├── IfConfig.inf ├── IfConfigStrings.uni ├── ShellNetHelper.c └── ShellNetHelper.h ├── IpConfig ├── IpConfig.c ├── IpConfig.h ├── IpConfig.inf └── IpConfigStrings.uni ├── Library ├── CRC.c ├── CRC.h ├── ConsistMapping.c ├── ConsistMapping.h ├── DPath.c ├── DPath.h ├── Data.c ├── Ebc │ ├── EfiLibPlat.h │ ├── initplat.c │ └── math.c ├── EfiPart.h ├── EfiShellLib.h ├── EfiShellLib.inf ├── Event.c ├── Event.h ├── FileIO.c ├── FileIO.h ├── Handle.c ├── Handle.h ├── HiiSupport.c ├── HiiSupport.h ├── IA32 │ ├── efilibplat.h │ ├── initplat.c │ └── math.c ├── IO.c ├── IO.h ├── IPF │ ├── efilibplat.h │ ├── initplat.c │ ├── libsalpal.h │ ├── math.c │ ├── palproc.h │ ├── palproc.s │ └── salpal.c ├── Init.c ├── LinkedList.h ├── Lock.c ├── Lock.h ├── Mem.c ├── Mem.h ├── Misc.c ├── Misc.h ├── Perf.c ├── RtData.c ├── ShellDebug.c ├── ShellDebug.h ├── ShellEnvInt.c ├── ShellEnvInt.h ├── Str.c ├── Str.h ├── VarCheck.c ├── VarCheck.h └── X64 │ └── efilibplat.h ├── License.txt ├── LoadPciRom ├── LoadPciRom.c ├── LoadPciRom.h ├── LoadPciRom.inf └── LoadPciRomStrings.uni ├── Ping ├── Ping.c ├── Ping.h ├── Ping.inf └── PingStrings.uni ├── ReadMe.txt ├── ShCommonStrings.uni ├── Shell.inf ├── ShellFull.inf ├── SmbiosView ├── EventLogInfo.c ├── EventLogInfo.h ├── LibSmbios.h ├── LibSmbiosView.c ├── LibSmbiosView.h ├── PrintInfo.c ├── PrintInfo.h ├── QueryTable.c ├── QueryTable.h ├── SmBiosViewStrings.uni ├── Smbios.c ├── Smbios.h ├── Smbiosview.inf ├── smbiosview.c └── smbiosview.h ├── TelnetMgmt ├── TelnetMgmt.c ├── TelnetMgmt.h ├── TelnetMgmt.inf ├── TelnetMgmtStrings.uni └── TelnetServer.h ├── attrib ├── AttribStrings.uni ├── attrib.c ├── attrib.h └── attrib.inf ├── cls ├── cls.c ├── cls.h ├── cls.inf └── clsstrings.uni ├── comp ├── CompStrings.uni ├── comp.c ├── comp.h └── comp.inf ├── cp ├── CpStrings.uni ├── cp.c ├── cp.h └── cp.inf ├── date ├── DateStrings.uni ├── date.c ├── date.h └── date.inf ├── dblk ├── DblkStrings.uni ├── dblk.c ├── dblk.h ├── dblk.inf └── efidump.c ├── devices ├── DevicesStrings.uni ├── devices.c ├── devices.h └── devices.inf ├── dmem ├── DebugStrings.uni ├── MemCommonPart.c ├── MemCommonPart.h ├── MemStrings.uni ├── debug.h ├── dmem.inf ├── efidump.c └── mem.c ├── dmpstore ├── DmpstoreStrings.uni ├── dmpstore.c ├── dmpstore.h └── dmpstore.inf ├── drivers ├── DriversStrings.uni ├── drivers.c ├── drivers.h └── drivers.inf ├── drvcfg ├── drvcfg.c ├── drvcfg.h ├── drvcfg.inf └── drvcfgStrings.uni ├── drvdiag ├── drvdiag.c ├── drvdiag.h ├── drvdiag.inf └── drvdiagStrings.uni ├── edit ├── EditStrings.uni ├── edit.inf ├── editor.h ├── editortype.h ├── libEditor.c ├── libFileBuffer.c ├── libInputBar.c ├── libMenuBar.c ├── libMisc.c ├── libMisc.h ├── libStatusBar.c ├── libTitleBar.c ├── libeditor.h ├── libfilebuffer.h ├── libinputbar.h ├── libmenubar.h ├── libstatusbar.h ├── libtitlebar.h └── main.c ├── err ├── DebugMask.h ├── ErrStrings.uni ├── err.c ├── err.h └── err.inf ├── guid ├── GuidStrings.uni ├── guid.c ├── guid.h └── guid.inf ├── hexedit ├── HexeditStrings.uni ├── heditor.h ├── heditortype.h ├── hexedit.inf ├── libBufferImage.c ├── libEditor.c ├── libInputBar.c ├── libMemImage.c ├── libMenuBar.c ├── libMisc.c ├── libMisc.h ├── libStatusBar.c ├── libTitleBar.c ├── libbufferimage.h ├── libclipboard.c ├── libclipboard.h ├── libdiskimage.c ├── libdiskimage.h ├── libeditor.h ├── libfileimage.c ├── libfileimage.h ├── libinputbar.h ├── libmemimage.h ├── libmenubar.h ├── libstatusbar.h ├── libtitlebar.h └── main.c ├── inc ├── shellenv.h └── shelltypes.h ├── load ├── LoadStrings.uni ├── load.c ├── load.h └── load.inf ├── ls ├── LsStrings.uni ├── ls.c ├── ls.h └── ls.inf ├── mem ├── DebugStrings.uni ├── MemCommonPart.c ├── MemCommonPart.h ├── MemStrings.uni ├── debug.h ├── efidump.c ├── mem.inf └── mm.c ├── memmap ├── MemmapStrings.uni ├── memmap.c ├── memmap.h └── memmap.inf ├── mkdir ├── MkdirStrings.uni ├── mkdir.c ├── mkdir.h └── mkdir.inf ├── mm ├── mm.c ├── mm.h ├── mm.inf └── mmStrings.uni ├── mode ├── ModeStrings.uni ├── mode.c ├── mode.h └── mode.inf ├── mount ├── MountStrings.uni ├── mount.c ├── mount.h └── mount.inf ├── mv ├── MvStrings.uni ├── mv.c ├── mv.h └── mv.inf ├── newshell ├── FakeHii.c ├── FakeHii.h ├── NshellStrings.uni ├── init.c ├── nshell.h └── nshell.inf ├── openinfo ├── OpeninfoStrings.uni ├── openinfo.c ├── openinfo.h └── openinfo.inf ├── pci ├── PciStrings.uni ├── pci.c ├── pci.h ├── pci.inf ├── pci_class.c └── pci_class.h ├── reset ├── ResetStrings.uni ├── reset.c ├── reset.h └── reset.inf ├── rm ├── RmStrings.uni ├── rm.c ├── rm.h └── rm.inf ├── sermode ├── SermodeStrings.uni ├── sermode.c ├── sermode.h └── sermode.inf ├── shellenv ├── CdStrings.uni ├── Connect.c ├── ConnectStrings.uni ├── ConsoleProxy.c ├── DhStrings.uni ├── EchoStrings.uni ├── HelpStrings.uni ├── MapStrings.uni ├── ScriptCmdStrings.uni ├── ShellenvHelpStrings.uni ├── ShellenvStrings.uni ├── batch.c ├── cmddisp.c ├── conio.c ├── data.c ├── dprot.c ├── echo.c ├── exec.c ├── for.c ├── goto.c ├── handle.c ├── help.c ├── if.c ├── init.c ├── map.c ├── marg.c ├── parsecmd.c ├── parsecmd.h ├── pause.c ├── protid.c ├── shelle.h ├── shellenvguid.h ├── shift.c ├── var.c └── wait.c ├── stall ├── StallStrings.uni ├── stall.c ├── stall.h └── stall.inf ├── time ├── TimeStrings.uni ├── time.c ├── time.h └── time.inf ├── touch ├── TouchStrings.uni ├── touch.c ├── touch.h └── touch.inf ├── type ├── TypeStrings.uni ├── type.c ├── type.h └── type.inf ├── tzone ├── TZoneStrings.uni ├── timezone.inf ├── tzone.c └── tzone.h ├── unload ├── UnloadStrings.uni ├── unload.c ├── unload.h └── unload.inf ├── ver ├── Ebc │ └── verEbc.c ├── Ipf │ └── ver64.c ├── Ver.inf ├── VerStrings.uni ├── ia32 │ └── ver32.c ├── ver.c └── ver.h └── vol ├── Vol.inf ├── VolStrings.uni ├── vol.c └── vol.h /DeviceTree/DevicetreeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/DeviceTree/DevicetreeStrings.uni -------------------------------------------------------------------------------- /DeviceTree/devicetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/DeviceTree/devicetree.c -------------------------------------------------------------------------------- /DeviceTree/devicetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/DeviceTree/devicetree.h -------------------------------------------------------------------------------- /DeviceTree/devicetree.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/DeviceTree/devicetree.inf -------------------------------------------------------------------------------- /EDK_Snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EDK_Snapshot.txt -------------------------------------------------------------------------------- /EfiCompress/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiCompress/Compress.h -------------------------------------------------------------------------------- /EfiCompress/CompressMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiCompress/CompressMain.c -------------------------------------------------------------------------------- /EfiCompress/CompressStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiCompress/CompressStrings.uni -------------------------------------------------------------------------------- /EfiCompress/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiCompress/compress.c -------------------------------------------------------------------------------- /EfiCompress/compress.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiCompress/compress.inf -------------------------------------------------------------------------------- /EfiDecompress/Decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiDecompress/Decompress.c -------------------------------------------------------------------------------- /EfiDecompress/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiDecompress/Decompress.h -------------------------------------------------------------------------------- /EfiDecompress/Decompress.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiDecompress/Decompress.inf -------------------------------------------------------------------------------- /EfiDecompress/DecompressStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/EfiDecompress/DecompressStrings.uni -------------------------------------------------------------------------------- /IfConfig/IfConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/IfConfig.c -------------------------------------------------------------------------------- /IfConfig/IfConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/IfConfig.h -------------------------------------------------------------------------------- /IfConfig/IfConfig.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/IfConfig.inf -------------------------------------------------------------------------------- /IfConfig/IfConfigStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/IfConfigStrings.uni -------------------------------------------------------------------------------- /IfConfig/ShellNetHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/ShellNetHelper.c -------------------------------------------------------------------------------- /IfConfig/ShellNetHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IfConfig/ShellNetHelper.h -------------------------------------------------------------------------------- /IpConfig/IpConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IpConfig/IpConfig.c -------------------------------------------------------------------------------- /IpConfig/IpConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IpConfig/IpConfig.h -------------------------------------------------------------------------------- /IpConfig/IpConfig.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IpConfig/IpConfig.inf -------------------------------------------------------------------------------- /IpConfig/IpConfigStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/IpConfig/IpConfigStrings.uni -------------------------------------------------------------------------------- /Library/CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/CRC.c -------------------------------------------------------------------------------- /Library/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/CRC.h -------------------------------------------------------------------------------- /Library/ConsistMapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ConsistMapping.c -------------------------------------------------------------------------------- /Library/ConsistMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ConsistMapping.h -------------------------------------------------------------------------------- /Library/DPath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/DPath.c -------------------------------------------------------------------------------- /Library/DPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/DPath.h -------------------------------------------------------------------------------- /Library/Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Data.c -------------------------------------------------------------------------------- /Library/Ebc/EfiLibPlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Ebc/EfiLibPlat.h -------------------------------------------------------------------------------- /Library/Ebc/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Ebc/initplat.c -------------------------------------------------------------------------------- /Library/Ebc/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Ebc/math.c -------------------------------------------------------------------------------- /Library/EfiPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/EfiPart.h -------------------------------------------------------------------------------- /Library/EfiShellLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/EfiShellLib.h -------------------------------------------------------------------------------- /Library/EfiShellLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/EfiShellLib.inf -------------------------------------------------------------------------------- /Library/Event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Event.c -------------------------------------------------------------------------------- /Library/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Event.h -------------------------------------------------------------------------------- /Library/FileIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/FileIO.c -------------------------------------------------------------------------------- /Library/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/FileIO.h -------------------------------------------------------------------------------- /Library/Handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Handle.c -------------------------------------------------------------------------------- /Library/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Handle.h -------------------------------------------------------------------------------- /Library/HiiSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/HiiSupport.c -------------------------------------------------------------------------------- /Library/HiiSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/HiiSupport.h -------------------------------------------------------------------------------- /Library/IA32/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IA32/efilibplat.h -------------------------------------------------------------------------------- /Library/IA32/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IA32/initplat.c -------------------------------------------------------------------------------- /Library/IA32/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IA32/math.c -------------------------------------------------------------------------------- /Library/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IO.c -------------------------------------------------------------------------------- /Library/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IO.h -------------------------------------------------------------------------------- /Library/IPF/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/efilibplat.h -------------------------------------------------------------------------------- /Library/IPF/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/initplat.c -------------------------------------------------------------------------------- /Library/IPF/libsalpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/libsalpal.h -------------------------------------------------------------------------------- /Library/IPF/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/math.c -------------------------------------------------------------------------------- /Library/IPF/palproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/palproc.h -------------------------------------------------------------------------------- /Library/IPF/palproc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/palproc.s -------------------------------------------------------------------------------- /Library/IPF/salpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/IPF/salpal.c -------------------------------------------------------------------------------- /Library/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Init.c -------------------------------------------------------------------------------- /Library/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/LinkedList.h -------------------------------------------------------------------------------- /Library/Lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Lock.c -------------------------------------------------------------------------------- /Library/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Lock.h -------------------------------------------------------------------------------- /Library/Mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Mem.c -------------------------------------------------------------------------------- /Library/Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Mem.h -------------------------------------------------------------------------------- /Library/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Misc.c -------------------------------------------------------------------------------- /Library/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Misc.h -------------------------------------------------------------------------------- /Library/Perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Perf.c -------------------------------------------------------------------------------- /Library/RtData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/RtData.c -------------------------------------------------------------------------------- /Library/ShellDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ShellDebug.c -------------------------------------------------------------------------------- /Library/ShellDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ShellDebug.h -------------------------------------------------------------------------------- /Library/ShellEnvInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ShellEnvInt.c -------------------------------------------------------------------------------- /Library/ShellEnvInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/ShellEnvInt.h -------------------------------------------------------------------------------- /Library/Str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Str.c -------------------------------------------------------------------------------- /Library/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/Str.h -------------------------------------------------------------------------------- /Library/VarCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/VarCheck.c -------------------------------------------------------------------------------- /Library/VarCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/VarCheck.h -------------------------------------------------------------------------------- /Library/X64/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Library/X64/efilibplat.h -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/License.txt -------------------------------------------------------------------------------- /LoadPciRom/LoadPciRom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/LoadPciRom/LoadPciRom.c -------------------------------------------------------------------------------- /LoadPciRom/LoadPciRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/LoadPciRom/LoadPciRom.h -------------------------------------------------------------------------------- /LoadPciRom/LoadPciRom.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/LoadPciRom/LoadPciRom.inf -------------------------------------------------------------------------------- /LoadPciRom/LoadPciRomStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/LoadPciRom/LoadPciRomStrings.uni -------------------------------------------------------------------------------- /Ping/Ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Ping/Ping.c -------------------------------------------------------------------------------- /Ping/Ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Ping/Ping.h -------------------------------------------------------------------------------- /Ping/Ping.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Ping/Ping.inf -------------------------------------------------------------------------------- /Ping/PingStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Ping/PingStrings.uni -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /ShCommonStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ShCommonStrings.uni -------------------------------------------------------------------------------- /Shell.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/Shell.inf -------------------------------------------------------------------------------- /ShellFull.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ShellFull.inf -------------------------------------------------------------------------------- /SmbiosView/EventLogInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/EventLogInfo.c -------------------------------------------------------------------------------- /SmbiosView/EventLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/EventLogInfo.h -------------------------------------------------------------------------------- /SmbiosView/LibSmbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/LibSmbios.h -------------------------------------------------------------------------------- /SmbiosView/LibSmbiosView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/LibSmbiosView.c -------------------------------------------------------------------------------- /SmbiosView/LibSmbiosView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/LibSmbiosView.h -------------------------------------------------------------------------------- /SmbiosView/PrintInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/PrintInfo.c -------------------------------------------------------------------------------- /SmbiosView/PrintInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/PrintInfo.h -------------------------------------------------------------------------------- /SmbiosView/QueryTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/QueryTable.c -------------------------------------------------------------------------------- /SmbiosView/QueryTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/QueryTable.h -------------------------------------------------------------------------------- /SmbiosView/SmBiosViewStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/SmBiosViewStrings.uni -------------------------------------------------------------------------------- /SmbiosView/Smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/Smbios.c -------------------------------------------------------------------------------- /SmbiosView/Smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/Smbios.h -------------------------------------------------------------------------------- /SmbiosView/Smbiosview.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/Smbiosview.inf -------------------------------------------------------------------------------- /SmbiosView/smbiosview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/smbiosview.c -------------------------------------------------------------------------------- /SmbiosView/smbiosview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/SmbiosView/smbiosview.h -------------------------------------------------------------------------------- /TelnetMgmt/TelnetMgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/TelnetMgmt/TelnetMgmt.c -------------------------------------------------------------------------------- /TelnetMgmt/TelnetMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/TelnetMgmt/TelnetMgmt.h -------------------------------------------------------------------------------- /TelnetMgmt/TelnetMgmt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/TelnetMgmt/TelnetMgmt.inf -------------------------------------------------------------------------------- /TelnetMgmt/TelnetMgmtStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/TelnetMgmt/TelnetMgmtStrings.uni -------------------------------------------------------------------------------- /TelnetMgmt/TelnetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/TelnetMgmt/TelnetServer.h -------------------------------------------------------------------------------- /attrib/AttribStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/attrib/AttribStrings.uni -------------------------------------------------------------------------------- /attrib/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/attrib/attrib.c -------------------------------------------------------------------------------- /attrib/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/attrib/attrib.h -------------------------------------------------------------------------------- /attrib/attrib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/attrib/attrib.inf -------------------------------------------------------------------------------- /cls/cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cls/cls.c -------------------------------------------------------------------------------- /cls/cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cls/cls.h -------------------------------------------------------------------------------- /cls/cls.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cls/cls.inf -------------------------------------------------------------------------------- /cls/clsstrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cls/clsstrings.uni -------------------------------------------------------------------------------- /comp/CompStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/comp/CompStrings.uni -------------------------------------------------------------------------------- /comp/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/comp/comp.c -------------------------------------------------------------------------------- /comp/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/comp/comp.h -------------------------------------------------------------------------------- /comp/comp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/comp/comp.inf -------------------------------------------------------------------------------- /cp/CpStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cp/CpStrings.uni -------------------------------------------------------------------------------- /cp/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cp/cp.c -------------------------------------------------------------------------------- /cp/cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cp/cp.h -------------------------------------------------------------------------------- /cp/cp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/cp/cp.inf -------------------------------------------------------------------------------- /date/DateStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/date/DateStrings.uni -------------------------------------------------------------------------------- /date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/date/date.c -------------------------------------------------------------------------------- /date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/date/date.h -------------------------------------------------------------------------------- /date/date.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/date/date.inf -------------------------------------------------------------------------------- /dblk/DblkStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dblk/DblkStrings.uni -------------------------------------------------------------------------------- /dblk/dblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dblk/dblk.c -------------------------------------------------------------------------------- /dblk/dblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dblk/dblk.h -------------------------------------------------------------------------------- /dblk/dblk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dblk/dblk.inf -------------------------------------------------------------------------------- /dblk/efidump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dblk/efidump.c -------------------------------------------------------------------------------- /devices/DevicesStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/devices/DevicesStrings.uni -------------------------------------------------------------------------------- /devices/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/devices/devices.c -------------------------------------------------------------------------------- /devices/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/devices/devices.h -------------------------------------------------------------------------------- /devices/devices.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/devices/devices.inf -------------------------------------------------------------------------------- /dmem/DebugStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/DebugStrings.uni -------------------------------------------------------------------------------- /dmem/MemCommonPart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/MemCommonPart.c -------------------------------------------------------------------------------- /dmem/MemCommonPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/MemCommonPart.h -------------------------------------------------------------------------------- /dmem/MemStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/MemStrings.uni -------------------------------------------------------------------------------- /dmem/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/debug.h -------------------------------------------------------------------------------- /dmem/dmem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/dmem.inf -------------------------------------------------------------------------------- /dmem/efidump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/efidump.c -------------------------------------------------------------------------------- /dmem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmem/mem.c -------------------------------------------------------------------------------- /dmpstore/DmpstoreStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmpstore/DmpstoreStrings.uni -------------------------------------------------------------------------------- /dmpstore/dmpstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmpstore/dmpstore.c -------------------------------------------------------------------------------- /dmpstore/dmpstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmpstore/dmpstore.h -------------------------------------------------------------------------------- /dmpstore/dmpstore.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/dmpstore/dmpstore.inf -------------------------------------------------------------------------------- /drivers/DriversStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drivers/DriversStrings.uni -------------------------------------------------------------------------------- /drivers/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drivers/drivers.c -------------------------------------------------------------------------------- /drivers/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drivers/drivers.h -------------------------------------------------------------------------------- /drivers/drivers.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drivers/drivers.inf -------------------------------------------------------------------------------- /drvcfg/drvcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvcfg/drvcfg.c -------------------------------------------------------------------------------- /drvcfg/drvcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvcfg/drvcfg.h -------------------------------------------------------------------------------- /drvcfg/drvcfg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvcfg/drvcfg.inf -------------------------------------------------------------------------------- /drvcfg/drvcfgStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvcfg/drvcfgStrings.uni -------------------------------------------------------------------------------- /drvdiag/drvdiag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvdiag/drvdiag.c -------------------------------------------------------------------------------- /drvdiag/drvdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvdiag/drvdiag.h -------------------------------------------------------------------------------- /drvdiag/drvdiag.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvdiag/drvdiag.inf -------------------------------------------------------------------------------- /drvdiag/drvdiagStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/drvdiag/drvdiagStrings.uni -------------------------------------------------------------------------------- /edit/EditStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/EditStrings.uni -------------------------------------------------------------------------------- /edit/edit.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/edit.inf -------------------------------------------------------------------------------- /edit/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/editor.h -------------------------------------------------------------------------------- /edit/editortype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/editortype.h -------------------------------------------------------------------------------- /edit/libEditor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libEditor.c -------------------------------------------------------------------------------- /edit/libFileBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libFileBuffer.c -------------------------------------------------------------------------------- /edit/libInputBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libInputBar.c -------------------------------------------------------------------------------- /edit/libMenuBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libMenuBar.c -------------------------------------------------------------------------------- /edit/libMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libMisc.c -------------------------------------------------------------------------------- /edit/libMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libMisc.h -------------------------------------------------------------------------------- /edit/libStatusBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libStatusBar.c -------------------------------------------------------------------------------- /edit/libTitleBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libTitleBar.c -------------------------------------------------------------------------------- /edit/libeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libeditor.h -------------------------------------------------------------------------------- /edit/libfilebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libfilebuffer.h -------------------------------------------------------------------------------- /edit/libinputbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libinputbar.h -------------------------------------------------------------------------------- /edit/libmenubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libmenubar.h -------------------------------------------------------------------------------- /edit/libstatusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libstatusbar.h -------------------------------------------------------------------------------- /edit/libtitlebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/libtitlebar.h -------------------------------------------------------------------------------- /edit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/edit/main.c -------------------------------------------------------------------------------- /err/DebugMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/err/DebugMask.h -------------------------------------------------------------------------------- /err/ErrStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/err/ErrStrings.uni -------------------------------------------------------------------------------- /err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/err/err.c -------------------------------------------------------------------------------- /err/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/err/err.h -------------------------------------------------------------------------------- /err/err.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/err/err.inf -------------------------------------------------------------------------------- /guid/GuidStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/guid/GuidStrings.uni -------------------------------------------------------------------------------- /guid/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/guid/guid.c -------------------------------------------------------------------------------- /guid/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/guid/guid.h -------------------------------------------------------------------------------- /guid/guid.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/guid/guid.inf -------------------------------------------------------------------------------- /hexedit/HexeditStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/HexeditStrings.uni -------------------------------------------------------------------------------- /hexedit/heditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/heditor.h -------------------------------------------------------------------------------- /hexedit/heditortype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/heditortype.h -------------------------------------------------------------------------------- /hexedit/hexedit.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/hexedit.inf -------------------------------------------------------------------------------- /hexedit/libBufferImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libBufferImage.c -------------------------------------------------------------------------------- /hexedit/libEditor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libEditor.c -------------------------------------------------------------------------------- /hexedit/libInputBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libInputBar.c -------------------------------------------------------------------------------- /hexedit/libMemImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libMemImage.c -------------------------------------------------------------------------------- /hexedit/libMenuBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libMenuBar.c -------------------------------------------------------------------------------- /hexedit/libMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libMisc.c -------------------------------------------------------------------------------- /hexedit/libMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libMisc.h -------------------------------------------------------------------------------- /hexedit/libStatusBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libStatusBar.c -------------------------------------------------------------------------------- /hexedit/libTitleBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libTitleBar.c -------------------------------------------------------------------------------- /hexedit/libbufferimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libbufferimage.h -------------------------------------------------------------------------------- /hexedit/libclipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libclipboard.c -------------------------------------------------------------------------------- /hexedit/libclipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libclipboard.h -------------------------------------------------------------------------------- /hexedit/libdiskimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libdiskimage.c -------------------------------------------------------------------------------- /hexedit/libdiskimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libdiskimage.h -------------------------------------------------------------------------------- /hexedit/libeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libeditor.h -------------------------------------------------------------------------------- /hexedit/libfileimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libfileimage.c -------------------------------------------------------------------------------- /hexedit/libfileimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libfileimage.h -------------------------------------------------------------------------------- /hexedit/libinputbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libinputbar.h -------------------------------------------------------------------------------- /hexedit/libmemimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libmemimage.h -------------------------------------------------------------------------------- /hexedit/libmenubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libmenubar.h -------------------------------------------------------------------------------- /hexedit/libstatusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libstatusbar.h -------------------------------------------------------------------------------- /hexedit/libtitlebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/libtitlebar.h -------------------------------------------------------------------------------- /hexedit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/hexedit/main.c -------------------------------------------------------------------------------- /inc/shellenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/inc/shellenv.h -------------------------------------------------------------------------------- /inc/shelltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/inc/shelltypes.h -------------------------------------------------------------------------------- /load/LoadStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/load/LoadStrings.uni -------------------------------------------------------------------------------- /load/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/load/load.c -------------------------------------------------------------------------------- /load/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/load/load.h -------------------------------------------------------------------------------- /load/load.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/load/load.inf -------------------------------------------------------------------------------- /ls/LsStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ls/LsStrings.uni -------------------------------------------------------------------------------- /ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ls/ls.c -------------------------------------------------------------------------------- /ls/ls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ls/ls.h -------------------------------------------------------------------------------- /ls/ls.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ls/ls.inf -------------------------------------------------------------------------------- /mem/DebugStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/DebugStrings.uni -------------------------------------------------------------------------------- /mem/MemCommonPart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/MemCommonPart.c -------------------------------------------------------------------------------- /mem/MemCommonPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/MemCommonPart.h -------------------------------------------------------------------------------- /mem/MemStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/MemStrings.uni -------------------------------------------------------------------------------- /mem/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/debug.h -------------------------------------------------------------------------------- /mem/efidump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/efidump.c -------------------------------------------------------------------------------- /mem/mem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/mem.inf -------------------------------------------------------------------------------- /mem/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mem/mm.c -------------------------------------------------------------------------------- /memmap/MemmapStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/memmap/MemmapStrings.uni -------------------------------------------------------------------------------- /memmap/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/memmap/memmap.c -------------------------------------------------------------------------------- /memmap/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/memmap/memmap.h -------------------------------------------------------------------------------- /memmap/memmap.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/memmap/memmap.inf -------------------------------------------------------------------------------- /mkdir/MkdirStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mkdir/MkdirStrings.uni -------------------------------------------------------------------------------- /mkdir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mkdir/mkdir.c -------------------------------------------------------------------------------- /mkdir/mkdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mkdir/mkdir.h -------------------------------------------------------------------------------- /mkdir/mkdir.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mkdir/mkdir.inf -------------------------------------------------------------------------------- /mm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mm/mm.c -------------------------------------------------------------------------------- /mm/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mm/mm.h -------------------------------------------------------------------------------- /mm/mm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mm/mm.inf -------------------------------------------------------------------------------- /mm/mmStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mm/mmStrings.uni -------------------------------------------------------------------------------- /mode/ModeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mode/ModeStrings.uni -------------------------------------------------------------------------------- /mode/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mode/mode.c -------------------------------------------------------------------------------- /mode/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mode/mode.h -------------------------------------------------------------------------------- /mode/mode.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mode/mode.inf -------------------------------------------------------------------------------- /mount/MountStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mount/MountStrings.uni -------------------------------------------------------------------------------- /mount/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mount/mount.c -------------------------------------------------------------------------------- /mount/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mount/mount.h -------------------------------------------------------------------------------- /mount/mount.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mount/mount.inf -------------------------------------------------------------------------------- /mv/MvStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mv/MvStrings.uni -------------------------------------------------------------------------------- /mv/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mv/mv.c -------------------------------------------------------------------------------- /mv/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mv/mv.h -------------------------------------------------------------------------------- /mv/mv.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/mv/mv.inf -------------------------------------------------------------------------------- /newshell/FakeHii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/FakeHii.c -------------------------------------------------------------------------------- /newshell/FakeHii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/FakeHii.h -------------------------------------------------------------------------------- /newshell/NshellStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/NshellStrings.uni -------------------------------------------------------------------------------- /newshell/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/init.c -------------------------------------------------------------------------------- /newshell/nshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/nshell.h -------------------------------------------------------------------------------- /newshell/nshell.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/newshell/nshell.inf -------------------------------------------------------------------------------- /openinfo/OpeninfoStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/openinfo/OpeninfoStrings.uni -------------------------------------------------------------------------------- /openinfo/openinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/openinfo/openinfo.c -------------------------------------------------------------------------------- /openinfo/openinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/openinfo/openinfo.h -------------------------------------------------------------------------------- /openinfo/openinfo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/openinfo/openinfo.inf -------------------------------------------------------------------------------- /pci/PciStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/PciStrings.uni -------------------------------------------------------------------------------- /pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/pci.c -------------------------------------------------------------------------------- /pci/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/pci.h -------------------------------------------------------------------------------- /pci/pci.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/pci.inf -------------------------------------------------------------------------------- /pci/pci_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/pci_class.c -------------------------------------------------------------------------------- /pci/pci_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/pci/pci_class.h -------------------------------------------------------------------------------- /reset/ResetStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/reset/ResetStrings.uni -------------------------------------------------------------------------------- /reset/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/reset/reset.c -------------------------------------------------------------------------------- /reset/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/reset/reset.h -------------------------------------------------------------------------------- /reset/reset.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/reset/reset.inf -------------------------------------------------------------------------------- /rm/RmStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/rm/RmStrings.uni -------------------------------------------------------------------------------- /rm/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/rm/rm.c -------------------------------------------------------------------------------- /rm/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/rm/rm.h -------------------------------------------------------------------------------- /rm/rm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/rm/rm.inf -------------------------------------------------------------------------------- /sermode/SermodeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/sermode/SermodeStrings.uni -------------------------------------------------------------------------------- /sermode/sermode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/sermode/sermode.c -------------------------------------------------------------------------------- /sermode/sermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/sermode/sermode.h -------------------------------------------------------------------------------- /sermode/sermode.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/sermode/sermode.inf -------------------------------------------------------------------------------- /shellenv/CdStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/CdStrings.uni -------------------------------------------------------------------------------- /shellenv/Connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/Connect.c -------------------------------------------------------------------------------- /shellenv/ConnectStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/ConnectStrings.uni -------------------------------------------------------------------------------- /shellenv/ConsoleProxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/ConsoleProxy.c -------------------------------------------------------------------------------- /shellenv/DhStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/DhStrings.uni -------------------------------------------------------------------------------- /shellenv/EchoStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/EchoStrings.uni -------------------------------------------------------------------------------- /shellenv/HelpStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/HelpStrings.uni -------------------------------------------------------------------------------- /shellenv/MapStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/MapStrings.uni -------------------------------------------------------------------------------- /shellenv/ScriptCmdStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/ScriptCmdStrings.uni -------------------------------------------------------------------------------- /shellenv/ShellenvHelpStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/ShellenvHelpStrings.uni -------------------------------------------------------------------------------- /shellenv/ShellenvStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/ShellenvStrings.uni -------------------------------------------------------------------------------- /shellenv/batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/batch.c -------------------------------------------------------------------------------- /shellenv/cmddisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/cmddisp.c -------------------------------------------------------------------------------- /shellenv/conio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/conio.c -------------------------------------------------------------------------------- /shellenv/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/data.c -------------------------------------------------------------------------------- /shellenv/dprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/dprot.c -------------------------------------------------------------------------------- /shellenv/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/echo.c -------------------------------------------------------------------------------- /shellenv/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/exec.c -------------------------------------------------------------------------------- /shellenv/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/for.c -------------------------------------------------------------------------------- /shellenv/goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/goto.c -------------------------------------------------------------------------------- /shellenv/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/handle.c -------------------------------------------------------------------------------- /shellenv/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/help.c -------------------------------------------------------------------------------- /shellenv/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/if.c -------------------------------------------------------------------------------- /shellenv/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/init.c -------------------------------------------------------------------------------- /shellenv/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/map.c -------------------------------------------------------------------------------- /shellenv/marg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/marg.c -------------------------------------------------------------------------------- /shellenv/parsecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/parsecmd.c -------------------------------------------------------------------------------- /shellenv/parsecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/parsecmd.h -------------------------------------------------------------------------------- /shellenv/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/pause.c -------------------------------------------------------------------------------- /shellenv/protid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/protid.c -------------------------------------------------------------------------------- /shellenv/shelle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/shelle.h -------------------------------------------------------------------------------- /shellenv/shellenvguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/shellenvguid.h -------------------------------------------------------------------------------- /shellenv/shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/shift.c -------------------------------------------------------------------------------- /shellenv/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/var.c -------------------------------------------------------------------------------- /shellenv/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/shellenv/wait.c -------------------------------------------------------------------------------- /stall/StallStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/stall/StallStrings.uni -------------------------------------------------------------------------------- /stall/stall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/stall/stall.c -------------------------------------------------------------------------------- /stall/stall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/stall/stall.h -------------------------------------------------------------------------------- /stall/stall.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/stall/stall.inf -------------------------------------------------------------------------------- /time/TimeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/time/TimeStrings.uni -------------------------------------------------------------------------------- /time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/time/time.c -------------------------------------------------------------------------------- /time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/time/time.h -------------------------------------------------------------------------------- /time/time.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/time/time.inf -------------------------------------------------------------------------------- /touch/TouchStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/touch/TouchStrings.uni -------------------------------------------------------------------------------- /touch/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/touch/touch.c -------------------------------------------------------------------------------- /touch/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/touch/touch.h -------------------------------------------------------------------------------- /touch/touch.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/touch/touch.inf -------------------------------------------------------------------------------- /type/TypeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/type/TypeStrings.uni -------------------------------------------------------------------------------- /type/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/type/type.c -------------------------------------------------------------------------------- /type/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/type/type.h -------------------------------------------------------------------------------- /type/type.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/type/type.inf -------------------------------------------------------------------------------- /tzone/TZoneStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/tzone/TZoneStrings.uni -------------------------------------------------------------------------------- /tzone/timezone.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/tzone/timezone.inf -------------------------------------------------------------------------------- /tzone/tzone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/tzone/tzone.c -------------------------------------------------------------------------------- /tzone/tzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/tzone/tzone.h -------------------------------------------------------------------------------- /unload/UnloadStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/unload/UnloadStrings.uni -------------------------------------------------------------------------------- /unload/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/unload/unload.c -------------------------------------------------------------------------------- /unload/unload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/unload/unload.h -------------------------------------------------------------------------------- /unload/unload.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/unload/unload.inf -------------------------------------------------------------------------------- /ver/Ebc/verEbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/Ebc/verEbc.c -------------------------------------------------------------------------------- /ver/Ipf/ver64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/Ipf/ver64.c -------------------------------------------------------------------------------- /ver/Ver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/Ver.inf -------------------------------------------------------------------------------- /ver/VerStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/VerStrings.uni -------------------------------------------------------------------------------- /ver/ia32/ver32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/ia32/ver32.c -------------------------------------------------------------------------------- /ver/ver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/ver.c -------------------------------------------------------------------------------- /ver/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/ver/ver.h -------------------------------------------------------------------------------- /vol/Vol.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/vol/Vol.inf -------------------------------------------------------------------------------- /vol/VolStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/vol/VolStrings.uni -------------------------------------------------------------------------------- /vol/vol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/vol/vol.c -------------------------------------------------------------------------------- /vol/vol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianocore/edk-Shell/HEAD/vol/vol.h --------------------------------------------------------------------------------