├── .gitignore ├── LICENSE ├── README.md ├── dub.json ├── sample ├── build.sh ├── photo.jpg └── source │ └── uefihelloworld.d ├── source └── uefi │ ├── acpi.d │ ├── acpi10.d │ ├── acpi20.d │ ├── acpi30.d │ ├── acpi40.d │ ├── acpi50.d │ ├── acpi51.d │ ├── acpi60.d │ ├── acpiaml.d │ ├── acpidatatable.d │ ├── base.d │ ├── base_type.d │ ├── bind.d │ ├── gpt.d │ ├── guids.d │ ├── ia32 │ └── bind.d │ ├── package.d │ ├── protocols │ ├── devicepath.d │ ├── graphicsoutput.d │ ├── hash.d │ ├── hash2.d │ ├── loadedimage.d │ ├── loadfile2.d │ ├── simplefilesystem.d │ ├── simplenetwork.d │ ├── simplepointer.d │ ├── simpletextin.d │ ├── simpletextinex.d │ └── simpletextout.d │ ├── pxe.d │ ├── spec.d │ └── x64 │ └── bind.d └── tools └── efihdrtool.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/dub.json -------------------------------------------------------------------------------- /sample/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/sample/build.sh -------------------------------------------------------------------------------- /sample/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/sample/photo.jpg -------------------------------------------------------------------------------- /sample/source/uefihelloworld.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/sample/source/uefihelloworld.d -------------------------------------------------------------------------------- /source/uefi/acpi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi.d -------------------------------------------------------------------------------- /source/uefi/acpi10.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi10.d -------------------------------------------------------------------------------- /source/uefi/acpi20.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi20.d -------------------------------------------------------------------------------- /source/uefi/acpi30.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi30.d -------------------------------------------------------------------------------- /source/uefi/acpi40.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi40.d -------------------------------------------------------------------------------- /source/uefi/acpi50.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi50.d -------------------------------------------------------------------------------- /source/uefi/acpi51.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi51.d -------------------------------------------------------------------------------- /source/uefi/acpi60.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpi60.d -------------------------------------------------------------------------------- /source/uefi/acpiaml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpiaml.d -------------------------------------------------------------------------------- /source/uefi/acpidatatable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/acpidatatable.d -------------------------------------------------------------------------------- /source/uefi/base.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/base.d -------------------------------------------------------------------------------- /source/uefi/base_type.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/base_type.d -------------------------------------------------------------------------------- /source/uefi/bind.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/bind.d -------------------------------------------------------------------------------- /source/uefi/gpt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/gpt.d -------------------------------------------------------------------------------- /source/uefi/guids.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/guids.d -------------------------------------------------------------------------------- /source/uefi/ia32/bind.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/ia32/bind.d -------------------------------------------------------------------------------- /source/uefi/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/package.d -------------------------------------------------------------------------------- /source/uefi/protocols/devicepath.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/devicepath.d -------------------------------------------------------------------------------- /source/uefi/protocols/graphicsoutput.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/graphicsoutput.d -------------------------------------------------------------------------------- /source/uefi/protocols/hash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/hash.d -------------------------------------------------------------------------------- /source/uefi/protocols/hash2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/hash2.d -------------------------------------------------------------------------------- /source/uefi/protocols/loadedimage.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/loadedimage.d -------------------------------------------------------------------------------- /source/uefi/protocols/loadfile2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/loadfile2.d -------------------------------------------------------------------------------- /source/uefi/protocols/simplefilesystem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simplefilesystem.d -------------------------------------------------------------------------------- /source/uefi/protocols/simplenetwork.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simplenetwork.d -------------------------------------------------------------------------------- /source/uefi/protocols/simplepointer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simplepointer.d -------------------------------------------------------------------------------- /source/uefi/protocols/simpletextin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simpletextin.d -------------------------------------------------------------------------------- /source/uefi/protocols/simpletextinex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simpletextinex.d -------------------------------------------------------------------------------- /source/uefi/protocols/simpletextout.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/protocols/simpletextout.d -------------------------------------------------------------------------------- /source/uefi/pxe.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/pxe.d -------------------------------------------------------------------------------- /source/uefi/spec.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/spec.d -------------------------------------------------------------------------------- /source/uefi/x64/bind.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/source/uefi/x64/bind.d -------------------------------------------------------------------------------- /tools/efihdrtool.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenraven/uefi-d/HEAD/tools/efihdrtool.d --------------------------------------------------------------------------------