mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
Compare commits
2 commits
df9e333f3a
...
2a6df95cad
Author | SHA1 | Date | |
---|---|---|---|
|
2a6df95cad | ||
|
83e0bdad7a |
3 changed files with 28 additions and 15 deletions
|
@ -491,7 +491,10 @@ BOOL FormatExtFs(DWORD DriveIndex, uint64_t PartitionOffset, DWORD BlockSize, LP
|
||||||
|
|
||||||
// Finally we can call close() to get the file system gets created
|
// Finally we can call close() to get the file system gets created
|
||||||
r = ext2fs_close(ext2fs);
|
r = ext2fs_close(ext2fs);
|
||||||
if (r != 0) {
|
if (r == 0) {
|
||||||
|
// Make sure ext2fs isn't freed twice
|
||||||
|
ext2fs = NULL;
|
||||||
|
} else {
|
||||||
SET_EXT2_FORMAT_ERROR(ERROR_WRITE_FAULT);
|
SET_EXT2_FORMAT_ERROR(ERROR_WRITE_FAULT);
|
||||||
uprintf("Could not create %s volume: %s", FSName, error_message(r));
|
uprintf("Could not create %s volume: %s", FSName, error_message(r));
|
||||||
goto out;
|
goto out;
|
||||||
|
|
28
src/iso.c
28
src/iso.c
|
@ -384,9 +384,9 @@ static void fix_config(const char* psz_fullpath, const char* psz_path, const cha
|
||||||
if ((props->is_grub_cfg) && replace_in_token_data(src, "linux",
|
if ((props->is_grub_cfg) && replace_in_token_data(src, "linux",
|
||||||
"maybe-ubiquity", "", TRUE))
|
"maybe-ubiquity", "", TRUE))
|
||||||
uprintf(" Removed 'maybe-ubiquity' kernel option");
|
uprintf(" Removed 'maybe-ubiquity' kernel option");
|
||||||
} else if (replace_in_token_data(src, "linux", "layerfs-path=minimal.standard.live.squashfs",
|
} else if (replace_in_token_data(src, "linux", "/casper/vmlinuz",
|
||||||
"persistent layerfs-path=minimal.standard.live.squashfs", TRUE) != NULL) {
|
"/casper/vmlinuz persistent", TRUE) != NULL) {
|
||||||
// Ubuntu 23.04 uses GRUB only with the above and does not use "maybe-ubiquity"
|
// Ubuntu 23.04 and 24.04 use GRUB only with the above and don't use "maybe-ubiquity"
|
||||||
uprintf(" Added 'persistent' kernel option");
|
uprintf(" Added 'persistent' kernel option");
|
||||||
modified = TRUE;
|
modified = TRUE;
|
||||||
} else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append",
|
} else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append",
|
||||||
|
@ -493,7 +493,7 @@ static void fix_config(const char* psz_fullpath, const char* psz_path, const cha
|
||||||
static BOOL is_in_md5sum(char* path)
|
static BOOL is_in_md5sum(char* path)
|
||||||
{
|
{
|
||||||
BOOL found = FALSE;
|
BOOL found = FALSE;
|
||||||
char c[3], *p;
|
char c[3], *p, *pos = md5sum_pos, *nul_pos;
|
||||||
|
|
||||||
// If we are creating the md5sum file from scratch, every file is in it.
|
// If we are creating the md5sum file from scratch, every file is in it.
|
||||||
if (fd_md5sum != NULL)
|
if (fd_md5sum != NULL)
|
||||||
|
@ -514,14 +514,24 @@ static BOOL is_in_md5sum(char* path)
|
||||||
|
|
||||||
// Search for the string in the remainder of the md5sum.txt
|
// Search for the string in the remainder of the md5sum.txt
|
||||||
// NB: md5sum_data is always NUL terminated.
|
// NB: md5sum_data is always NUL terminated.
|
||||||
p = strstr(md5sum_pos, path);
|
p = strstr(pos, path);
|
||||||
|
// Cater for the case where we matched a partial string and look for the full one
|
||||||
|
while (p != NULL && p[strlen(path)] != '\n' && p[strlen(path)] != '\r' && p[strlen(path)] != '\0') {
|
||||||
|
pos = p + strlen(path);
|
||||||
|
p = strstr(pos, path);
|
||||||
|
}
|
||||||
found = (p != NULL);
|
found = (p != NULL);
|
||||||
// If not found in remainder and we have a remainder, loop to search from beginning
|
// If not found in remainder and we have a remainder, loop to search from beginning
|
||||||
if (!found && md5sum_pos != md5sum_data) {
|
if (!found && pos != md5sum_data) {
|
||||||
c[2] = *md5sum_pos;
|
nul_pos = pos;
|
||||||
*md5sum_pos = 0;
|
c[2] = *nul_pos;
|
||||||
|
*nul_pos = 0;
|
||||||
p = strstr(md5sum_data, path);
|
p = strstr(md5sum_data, path);
|
||||||
*md5sum_pos = c[2];
|
while (p != NULL && p[strlen(path)] != '\n' && p[strlen(path)] != '\r' && p[strlen(path)] != '\0') {
|
||||||
|
pos = p + strlen(path);
|
||||||
|
p = strstr(pos, path);
|
||||||
|
}
|
||||||
|
*nul_pos = c[2];
|
||||||
found = (p != NULL);
|
found = (p != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
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 4.5.2146"
|
CAPTION "Rufus 4.5.2148"
|
||||||
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
|
||||||
|
@ -397,8 +397,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 4,5,2146,0
|
FILEVERSION 4,5,2148,0
|
||||||
PRODUCTVERSION 4,5,2146,0
|
PRODUCTVERSION 4,5,2148,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -416,13 +416,13 @@ BEGIN
|
||||||
VALUE "Comments", "https://rufus.ie"
|
VALUE "Comments", "https://rufus.ie"
|
||||||
VALUE "CompanyName", "Akeo Consulting"
|
VALUE "CompanyName", "Akeo Consulting"
|
||||||
VALUE "FileDescription", "Rufus"
|
VALUE "FileDescription", "Rufus"
|
||||||
VALUE "FileVersion", "4.5.2146"
|
VALUE "FileVersion", "4.5.2148"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "<22> 2011-2024 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "<22> 2011-2024 Pete Batard (GPL v3)"
|
||||||
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
||||||
VALUE "OriginalFilename", "rufus-4.5.exe"
|
VALUE "OriginalFilename", "rufus-4.5.exe"
|
||||||
VALUE "ProductName", "Rufus"
|
VALUE "ProductName", "Rufus"
|
||||||
VALUE "ProductVersion", "4.5.2146"
|
VALUE "ProductVersion", "4.5.2148"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Reference in a new issue