8000 Tags · pbatard/uefi-ntfs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: pbatard/uefi-ntfs

Tags

v2.5

Toggle v2.5's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
Fix unloading of drivers for some platforms/medias

* Depending on the platform/media, the file system handle may have additional "phantom" disk
  instances with no drivers attached.
* As a result our assertion that OpenInfoCount will always be 1 is wrong and we must ensure
  that we process all the open disk protocols until we find one with a driver we can unload.

v2.4

Toggle v2.4's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
Replace potentially dodgy native file system drivers instead of attem…

…pting to use them

* Because of the AMI NTFS driver bug (https://github.com/pbatard/AmiNtfsBug) as well as
  reports of issues when using NTFS drivers different from ours, we now unconditionally
  try to unload any native file system driver that is servicing our target partition, so
  that we can replace it with one we trust.
* Also make sure we reference SupportedLanguages in GetDriverName() rather than the empty
  string, as not all drivers produce a name when using the empty string.

v2.3

Toggle v2.3's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
update GitHub Actions to use actions/checkout@v4

* Also enable manual trigger.

v2.2

Toggle v2.2's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
add application banner and coloured text output

v2.1

Toggle v2.1's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
make sure tagged releases are published

v2.0

Toggle v2.0's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
add automated release creation

* Also update gnu-efi to latest

v1.8

Toggle v1.8's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
add reporting of SMBIOS information

* Also update gnu-efi to latest

v1.7

Toggle v1.7's commit message

Verified

This commit was signed with the committer’s verified signature.
pbatard Pete Batard
misc. improvements & refactoring

* Improve output messages
* Reorder operations
* Print target device path and volume label

v1.6

Toggle v1.6's commit message
add full ARM64 support

* Also remove VS/Clang support
* Also update gnu-efi to latest and use HTTPS for downloads

v1.5

Toggle v1.5's commit message
check that the loaded driver is of EFI subsystem 'Boot System Driver'

* This is needed for HP UEFI firmwares, who apparently won't start
  drivers that are of a different type, such as 'Runtime Driver'
* Also avoid using HandleProtocol() as advised by the UEFI specs
  and improve the output of DisconnectBlockingDrivers()
0