X-Git-Url: https://code.delx.au/refind/blobdiff_plain/38d3f7994bd4a51e4a6e79372f33e135ef61b805..e63c2d65be451323f51c85910d1e125deb1ad1ea:/NEWS.txt diff --git a/NEWS.txt b/NEWS.txt index 8ca9348..d1a373a 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,6 +1,22 @@ 0.10.1 (??/??/201?): -------------------- +- Updated LodePNG to latest version (20151024). + +- Fixed bugs in mkrlconf and in refind-install that could cause some kernel + options to be excluded from refind_linux.conf. There were two trouble + conditions: + - Previously, these scripts assumed that the first option in + /proc/cmdline was the kernel's filename, but this isn't always the + case. (In particular, when gummiboot launches the kernel, this is not + true. It might be an incorrect assumption in some other cases, too.) + The fix involves checking for likely signs of a kernel filename before + discarding this first option. + - These scripts cut the "initrd=*" option from /proc/cmdline, but the + call to "sed" was overzealous and cut until the end of input. This + usually worked, since the initrd= option was usually last on the line; + but if it wasn't, any options following initrd= would be lost. + - Added "kernel*" as a matching pattern for Linux kernels, since this is what Gentoo uses by default.