mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-29 05:55:30 -04:00
[ext2fs] add BIOS persistence for Debian Live & Ubuntu
This commit is contained in:
parent
4c8dd29935
commit
f0c843fcdc
2 changed files with 33 additions and 25 deletions
48
src/iso.c
48
src/iso.c
|
@ -62,6 +62,8 @@ typedef struct {
|
||||||
BOOLEAN is_conf;
|
BOOLEAN is_conf;
|
||||||
BOOLEAN is_syslinux_cfg;
|
BOOLEAN is_syslinux_cfg;
|
||||||
BOOLEAN is_grub_cfg;
|
BOOLEAN is_grub_cfg;
|
||||||
|
BOOLEAN is_menu_cfg;
|
||||||
|
BOOLEAN is_txt_cfg;
|
||||||
BOOLEAN is_old_c32[NB_OLD_C32];
|
BOOLEAN is_old_c32[NB_OLD_C32];
|
||||||
} EXTRACT_PROPS;
|
} EXTRACT_PROPS;
|
||||||
|
|
||||||
|
@ -85,6 +87,8 @@ static const char* wininst_name[] = { "install.wim", "install.esd", "install.swm
|
||||||
// If the disc was mastered properly, GRUB/EFI will take care of itself
|
// If the disc was mastered properly, GRUB/EFI will take care of itself
|
||||||
static const char* grub_dirname = "/boot/grub/i386-pc";
|
static const char* grub_dirname = "/boot/grub/i386-pc";
|
||||||
static const char* grub_cfg = "grub.cfg";
|
static const char* grub_cfg = "grub.cfg";
|
||||||
|
static const char* menu_cfg = "menu.cfg";
|
||||||
|
static const char* txt_cfg = "txt.cfg";
|
||||||
static const char* syslinux_cfg[] = { "isolinux.cfg", "syslinux.cfg", "extlinux.conf" };
|
static const char* syslinux_cfg[] = { "isolinux.cfg", "syslinux.cfg", "extlinux.conf" };
|
||||||
static const char* isolinux_bin[] = { "isolinux.bin", "boot.bin" };
|
static const char* isolinux_bin[] = { "isolinux.bin", "boot.bin" };
|
||||||
static const char* pe_dirname[] = { "/i386", "/amd64", "/minint" };
|
static const char* pe_dirname[] = { "/i386", "/amd64", "/minint" };
|
||||||
|
@ -165,22 +169,30 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const
|
||||||
props->is_old_c32[i] = TRUE;
|
props->is_old_c32[i] = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for config files that may need patching
|
if (!scan_only) { // Write-time checks
|
||||||
if (!scan_only) {
|
// Check for config files that may need patching
|
||||||
len = safe_strlen(psz_basename);
|
len = safe_strlen(psz_basename);
|
||||||
if ((len >= 4) && safe_stricmp(&psz_basename[len-4], ".cfg") == 0)
|
if ((len >= 4) && safe_stricmp(&psz_basename[len - 4], ".cfg") == 0) {
|
||||||
props->is_cfg = TRUE;
|
props->is_cfg = TRUE;
|
||||||
}
|
if (safe_stricmp(psz_basename, grub_cfg) == 0) {
|
||||||
|
props->is_grub_cfg = TRUE;
|
||||||
|
} else if (safe_stricmp(psz_basename, menu_cfg) == 0) {
|
||||||
|
props->is_menu_cfg = TRUE;
|
||||||
|
} else if (safe_stricmp(psz_basename, txt_cfg) == 0) {
|
||||||
|
props->is_txt_cfg = TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Check for GRUB artifacts
|
// In case there's an ldlinux.sys on the ISO, prevent it from overwriting ours
|
||||||
if (scan_only) {
|
if ((psz_dirname != NULL) && (psz_dirname[0] == 0) && (safe_strcmp(psz_basename, ldlinux_name) == 0)) {
|
||||||
|
uprintf("skipping % file from ISO image\n", ldlinux_name);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
} else { // Scan-time checks
|
||||||
|
// Check for GRUB artifacts
|
||||||
if (safe_stricmp(psz_dirname, grub_dirname) == 0)
|
if (safe_stricmp(psz_dirname, grub_dirname) == 0)
|
||||||
img_report.has_grub2 = TRUE;
|
img_report.has_grub2 = TRUE;
|
||||||
} else if (safe_stricmp(psz_basename, grub_cfg) == 0) {
|
|
||||||
props->is_grub_cfg = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (scan_only) {
|
|
||||||
// Check for a syslinux v5.0+ file anywhere
|
// Check for a syslinux v5.0+ file anywhere
|
||||||
if (safe_stricmp(psz_basename, ldlinux_c32) == 0) {
|
if (safe_stricmp(psz_basename, ldlinux_c32) == 0) {
|
||||||
has_ldlinux_c32 = TRUE;
|
has_ldlinux_c32 = TRUE;
|
||||||
|
@ -275,11 +287,6 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const
|
||||||
total_blocks++;
|
total_blocks++;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
// In case there's an ldlinux.sys on the ISO, prevent it from overwriting ours
|
|
||||||
if ((psz_dirname != NULL) && (psz_dirname[0] == 0) && (safe_strcmp(psz_basename, ldlinux_name) == 0)) {
|
|
||||||
uprintf("skipping % file from ISO image\n", ldlinux_name);
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -298,16 +305,17 @@ static void fix_config(const char* psz_fullpath, const char* psz_path, const cha
|
||||||
|
|
||||||
// Add persistence to the kernel options
|
// Add persistence to the kernel options
|
||||||
if ((boot_type == BT_IMAGE) && HAS_PERSISTENCE(img_report) && persistence_size) {
|
if ((boot_type == BT_IMAGE) && HAS_PERSISTENCE(img_report) && persistence_size) {
|
||||||
if (props->is_grub_cfg) {
|
if ((props->is_grub_cfg) || (props->is_menu_cfg) || (props->is_txt_cfg)) {
|
||||||
// Ubuntu & derivatives are assumed to use '/casper/vmlinuz'
|
// Ubuntu & derivatives are assumed to use '/casper/vmlinuz'
|
||||||
// in their kernel options and use 'persistent' as keyword.
|
// in their kernel options and use 'persistent' as keyword.
|
||||||
if (replace_in_token_data(src, "linux", "/casper/vmlinuz",
|
if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append",
|
||||||
"/casper/vmlinuz persistent", TRUE) != NULL)
|
props->is_grub_cfg ? "/casper/vmlinuz" : "/casper/initrd",
|
||||||
|
props->is_grub_cfg ? "/casper/vmlinuz persistent" : "/casper/initrd persistent", TRUE) != NULL)
|
||||||
uprintf(" Added 'persistent' kernel option");
|
uprintf(" Added 'persistent' kernel option");
|
||||||
// Debian & derivatives are assumed to use 'boot=live' in
|
// Debian & derivatives are assumed to use 'boot=live' in
|
||||||
// their kernel options and use 'persistence' as keyword.
|
// their kernel options and use 'persistence' as keyword.
|
||||||
else if (replace_in_token_data(src, "linux", "boot=live",
|
else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append",
|
||||||
"boot=live persistence", TRUE) != NULL)
|
"boot=live", "boot=live persistence", TRUE) != NULL)
|
||||||
uprintf(" Added 'persistence' kernel option");
|
uprintf(" Added 'persistence' kernel option");
|
||||||
// Other distros can go to hell. Seriously, just check all partitions for
|
// Other distros can go to hell. Seriously, just check all partitions for
|
||||||
// an ext volume with the right label and use persistence *THEN*. I mean,
|
// an ext volume with the right label and use persistence *THEN*. I mean,
|
||||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||||
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
EXSTYLE WS_EX_ACCEPTFILES
|
EXSTYLE WS_EX_ACCEPTFILES
|
||||||
CAPTION "Rufus 3.7.1557"
|
CAPTION "Rufus 3.7.1558"
|
||||||
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
||||||
|
@ -394,8 +394,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 3,7,1557,0
|
FILEVERSION 3,7,1558,0
|
||||||
PRODUCTVERSION 3,7,1557,0
|
PRODUCTVERSION 3,7,1558,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -413,13 +413,13 @@ BEGIN
|
||||||
VALUE "Comments", "https://akeo.ie"
|
VALUE "Comments", "https://akeo.ie"
|
||||||
VALUE "CompanyName", "Akeo Consulting"
|
VALUE "CompanyName", "Akeo Consulting"
|
||||||
VALUE "FileDescription", "Rufus"
|
VALUE "FileDescription", "Rufus"
|
||||||
VALUE "FileVersion", "3.7.1557"
|
VALUE "FileVersion", "3.7.1558"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "© 2011-2019 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "© 2011-2019 Pete Batard (GPL v3)"
|
||||||
VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/gpl.html"
|
VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/gpl.html"
|
||||||
VALUE "OriginalFilename", "rufus-3.7.exe"
|
VALUE "OriginalFilename", "rufus-3.7.exe"
|
||||||
VALUE "ProductName", "Rufus"
|
VALUE "ProductName", "Rufus"
|
||||||
VALUE "ProductVersion", "3.7.1557"
|
VALUE "ProductVersion", "3.7.1558"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue