├── .gitignore ├── .gitmodules ├── Build └── Windows │ ├── asl │ ├── acpibin.exe │ ├── acpidump.exe │ ├── acpiexec.exe │ ├── acpihelp.exe │ ├── acpinames.exe │ ├── acpisrc.exe │ ├── acpixtract.exe │ ├── badcode.asl │ ├── changes.txt │ └── iasl.exe │ └── nasm │ ├── LICENSE │ ├── nasm.exe │ ├── ndisasm.exe │ └── rdoff │ ├── ldrdf.exe │ ├── rdf2bin.exe │ ├── rdf2com.exe │ ├── rdf2ihx.exe │ ├── rdf2ith.exe │ ├── rdf2srec.exe │ ├── rdfdump.exe │ ├── rdflib.exe │ └── rdx.exe ├── Images ├── procmon.jpg ├── shell.jpg ├── turkey.jpg └── wpbt.jpg ├── LICENSE ├── NativeHello ├── .gitignore ├── NativeHello.sln ├── NativeHello │ ├── NativeHello.c │ ├── NativeHello.vcxproj │ └── NativeHello.vcxproj.filters └── Signing │ ├── SignNativeHello.bat │ └── VeriSignG5.cer ├── README.md ├── USB ├── EFI │ └── Boot │ │ ├── NOTE.txt │ │ └── bootx64.efi ├── NativeHello.exe └── WpbtBuilder.efi └── WpbtTestPkg ├── .vscode ├── build_this.py ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── WpbtBuilder ├── WpbtBuilder.c └── WpbtBuilder.inf ├── WpbtTestPkg.code-workspace ├── WpbtTestPkg.dec └── WpbtTestPkg.dsc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/.gitmodules -------------------------------------------------------------------------------- /Build/Windows/asl/acpibin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpibin.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpidump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpidump.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpiexec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpiexec.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpihelp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpihelp.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpinames.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpinames.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpisrc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpisrc.exe -------------------------------------------------------------------------------- /Build/Windows/asl/acpixtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/acpixtract.exe -------------------------------------------------------------------------------- /Build/Windows/asl/badcode.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/badcode.asl -------------------------------------------------------------------------------- /Build/Windows/asl/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/changes.txt -------------------------------------------------------------------------------- /Build/Windows/asl/iasl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/asl/iasl.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/LICENSE -------------------------------------------------------------------------------- /Build/Windows/nasm/nasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/nasm.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/ndisasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/ndisasm.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/ldrdf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/ldrdf.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdf2bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdf2bin.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdf2com.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdf2com.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdf2ihx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdf2ihx.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdf2ith.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdf2ith.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdf2srec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdf2srec.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdfdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdfdump.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdflib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdflib.exe -------------------------------------------------------------------------------- /Build/Windows/nasm/rdoff/rdx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Build/Windows/nasm/rdoff/rdx.exe -------------------------------------------------------------------------------- /Images/procmon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Images/procmon.jpg -------------------------------------------------------------------------------- /Images/shell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Images/shell.jpg -------------------------------------------------------------------------------- /Images/turkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Images/turkey.jpg -------------------------------------------------------------------------------- /Images/wpbt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/Images/wpbt.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeHello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/.gitignore -------------------------------------------------------------------------------- /NativeHello/NativeHello.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/NativeHello.sln -------------------------------------------------------------------------------- /NativeHello/NativeHello/NativeHello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/NativeHello/NativeHello.c -------------------------------------------------------------------------------- /NativeHello/NativeHello/NativeHello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/NativeHello/NativeHello.vcxproj -------------------------------------------------------------------------------- /NativeHello/NativeHello/NativeHello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/NativeHello/NativeHello.vcxproj.filters -------------------------------------------------------------------------------- /NativeHello/Signing/SignNativeHello.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/Signing/SignNativeHello.bat -------------------------------------------------------------------------------- /NativeHello/Signing/VeriSignG5.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/NativeHello/Signing/VeriSignG5.cer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/README.md -------------------------------------------------------------------------------- /USB/EFI/Boot/NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/USB/EFI/Boot/NOTE.txt -------------------------------------------------------------------------------- /USB/EFI/Boot/bootx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/USB/EFI/Boot/bootx64.efi -------------------------------------------------------------------------------- /USB/NativeHello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/USB/NativeHello.exe -------------------------------------------------------------------------------- /USB/WpbtBuilder.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/USB/WpbtBuilder.efi -------------------------------------------------------------------------------- /WpbtTestPkg/.vscode/build_this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/.vscode/build_this.py -------------------------------------------------------------------------------- /WpbtTestPkg/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /WpbtTestPkg/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/.vscode/launch.json -------------------------------------------------------------------------------- /WpbtTestPkg/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/.vscode/tasks.json -------------------------------------------------------------------------------- /WpbtTestPkg/WpbtBuilder/WpbtBuilder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/WpbtBuilder/WpbtBuilder.c -------------------------------------------------------------------------------- /WpbtTestPkg/WpbtBuilder/WpbtBuilder.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/WpbtBuilder/WpbtBuilder.inf -------------------------------------------------------------------------------- /WpbtTestPkg/WpbtTestPkg.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/WpbtTestPkg.code-workspace -------------------------------------------------------------------------------- /WpbtTestPkg/WpbtTestPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/WpbtTestPkg.dec -------------------------------------------------------------------------------- /WpbtTestPkg/WpbtTestPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/WPBT-Builder/HEAD/WpbtTestPkg/WpbtTestPkg.dsc --------------------------------------------------------------------------------