2017-04-25 Vladimir Serbinenko <phcoder@gmail.com>
- Increase version to 2.02.
2017-04-12 Vladimir Serbinenko <phcoder@gmail.com>
- Fix remaining cases of gcc 7 fallthrough warning.
- They are all intended, so just add the relevant comment.
2017-04-04 Andrei Borzenkov <arvidjaar@gmail.com>
- Add gnulib-fix-gcc7-fallthrough.diff
- As long as the code is not upstream, add it as explicit patch for the case of gnulib refresh.
2017-04-04 Andrei Borzenkov <arvidjaar@gmail.com>
- i386, x86_64, ppc: fix switch fallthrough cases with GCC7
- In util/getroot and efidisk slightly modify exitsing comment to mostly retain it but still make GCC7 compliant with respect to fall through annotation.
- In grub-core/lib/xzembed/xz_dec_lzma2.c it adds same comments as upstream.
- In grub-core/tests/setjmp_tets.c declare functions as "noreturn" to suppress GCC7 warning.
- In grub-core/gnulib/regexec.c use new attribute, because existing annotation is not recognized by GCC7 parser (which requires that comment immediately precedes case statement).
- Otherwise add FALLTHROUGH comment. Closes: 50598
2017-04-04 Andrei Borzenkov <arvidjaar@gmail.com>
- btrfs: avoid "used uninitialized" error with GCC7 sblock was local and so considered new variable on every loop iteration. Closes: 50597
2017-04-02 Andrei Borzenkov <arvidjaar@gmail.com>
- acpi: add missing efi_call wrapper to acpi command
- Fixed loading of ACPI tables on EFI (side effect was apparent memory corruption ranging from unpredictable behavior to system reset). Reported by Nando Eva <nando4eva@ymail.com>