diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db575f..7fdda73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ Changelog ## [Unreleased] +## [v2.7.2] 2021-02-22 + +- Fix BIOS booting of 32-bit versions of Windows 8 and above with more + than 4GB of RAM. + +- Ignore subdirectories when booting from a USB key (or other real + filesystem), thereby avoiding potential filename collisions. + +- Avoid potential infinite loops when retrieving the BIOS memory map. + ## [v2.7.1] 2021-02-11 - Extract `BCD`, `boot.sdi`, and standard boot font files @@ -197,6 +207,7 @@ Changelog [unreleased]: https://github.com/ipxe/wimboot/commits +[v2.7.2]: https://github.com/ipxe/wimboot/releases/tag/v2.7.2 [v2.7.1]: https://github.com/ipxe/wimboot/releases/tag/v2.7.1 [v2.6.0]: https://github.com/ipxe/wimboot/releases/tag/v2.6.0 [v2.5.2]: https://github.com/ipxe/wimboot/releases/tag/v2.5.2 diff --git a/src/Makefile b/src/Makefile index 903c6f5..0b79c71 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -VERSION := v2.7.1 +VERSION := v2.7.2 OBJECTS := prefix.o startup.o callback.o main.o vsprintf.o string.o peloader.o OBJECTS += int13.o vdisk.o cpio.o stdio.o lznt1.o xca.o die.o efi.o efimain.o diff --git a/src/wimboot.i386 b/src/wimboot.i386 index ee3466a..4696970 100755 Binary files a/src/wimboot.i386 and b/src/wimboot.i386 differ diff --git a/src/wimboot.x86_64 b/src/wimboot.x86_64 index 3fd35aa..5dfc8dd 100755 Binary files a/src/wimboot.x86_64 and b/src/wimboot.x86_64 differ diff --git a/wimboot b/wimboot index 3fd35aa..5dfc8dd 100755 Binary files a/wimboot and b/wimboot differ