| Commit message (Collapse) | Author | Age |
|
|
|
| |
Fixes #9
|
| |
|
|
|
|
| |
This makes this optional pattern scan work on the current Windows 10 20H1 preview release
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The EFI variable "BootCurrent" corresponds to XXXX in some variable "BootXXXX", and this value was being used to guard against recursive self-booting. However, EfiBootManagerGetLoadOptions() already returns the options sorted by the contents of the "BootOrder" variable, which means that XXXX does not necessarily correspond to the linear index in a for loop. Instead use BootOptions[Index].OptionNumber to retrieve and compare the original value of XXXX
Fixes #5
|
|
|
|
|
|
| |
- Make hde64_table const to prevent it from ending up in .data
- #include <intrin.h> because Clang gets confused by __stosb without it
- Fix various warnings
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
PE section names must be null terminated because they are not guaranteed to be. However they must be null terminated at 8 characters, not at the length of the string that happens to be relevant for whatever reason. This would have led to false positives when finding sections, were it not for the off-by-one error that was keeping an additional character in the buffer
|
|
|
|
|
|
| |
ShellBinPkg was removed from EDK2's master tree: https://github.com/tianocore/edk2/commit/81a8a52a6bb21afca8ce5b507575b24b3f3a15e7
The TianoCore recommended way to obtain the shell binary is now to download a stable release from https://github.com/tianocore/edk2/releases and extract the shell binary from the assets ZIP. Since this change prevents linking to the .efi file directly as before, change the download link in the README to the last stable tag to include ShellBinPkg instead
|
| |
|
|
|
|
| |
Fixes #1
|
| |
|
| |
|
| |
|
| |
|
|
|