mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
fcae51a446
* This reverts most of 3528ca773d
in order to download 'core.img' from our server instead of patching it.
* Also solve the issue of downloading a custom 'core.img' for Fedora 37, that introduced
a new 'grub_debug_is_enabled' symbol without altering their GRUB version string.
* This is accomplished by doing what the distro maintainers should have done on their
own, by appending a custom suffix to the GRUB version string.
7 lines
202 B
C
7 lines
202 B
C
/*
|
|
* This file contains the version string of the GRUB 2.x binary embedded in Rufus.
|
|
* Should be the same as GRUB's PACKAGE_VERSION in config.h.
|
|
*/
|
|
#pragma once
|
|
|
|
#define GRUB2_PACKAGE_VERSION "2.06"
|