Binary release v11.4.0

This commit is contained in:
Mintsuki
2026-04-18 23:02:38 +00:00
parent 3c16d4c3bb
commit 89a0e5bf36
12 changed files with 1386 additions and 1376 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -676,6 +676,7 @@ static int bios_install(int argc, char *argv[]) {
const uint8_t *bootloader_img = binary_limine_hdd_bin_data;
size_t bootloader_file_size = sizeof(binary_limine_hdd_bin_data);
uint8_t orig_mbr[70], timestamp[6];
void *empty_lba = NULL;
const char *part_ndx = NULL;
#ifndef __BYTE_ORDER__
@@ -885,7 +886,7 @@ static int bios_install(int argc, char *argv[]) {
}
// Nuke the GPTs.
void *empty_lba = calloc(1, lb_size);
empty_lba = calloc(1, lb_size);
if (empty_lba == NULL) {
perror_wrap("error: bios_install(): malloc()");
goto cleanup;
@@ -904,8 +905,6 @@ static int bios_install(int argc, char *argv[]) {
}
}
free(empty_lba);
// We're no longer GPT.
gpt = 0;
@@ -1214,6 +1213,8 @@ cleanup:
}
uninstall_mode_cleanup:
free_uninstall_data();
if (empty_lba)
free(empty_lba);
if (cache)
free(cache);
if (device != NULL)
@@ -1360,7 +1361,7 @@ cleanup:
return ret;
}
#define LIMINE_VERSION "11.3.1"
#define LIMINE_VERSION "11.4.0"
#define LIMINE_COPYRIGHT "Copyright (C) 2019-2026 Mintsuki and contributors."
static void version_usage(void) {

Binary file not shown.