Binary release v9.6.1

This commit is contained in:
Mintsuki
2025-08-16 10:55:29 +00:00
parent e832734c60
commit 572f328716
13 changed files with 1005 additions and 1000 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,3 +1,5 @@
.POSIX:
SHELL=/bin/sh
CC=cc
@@ -6,8 +8,6 @@ CPPFLAGS=
LDFLAGS=
LIBS=
WERROR_FLAG=
STRIP=strip
INSTALL=./install-sh
@@ -43,4 +43,4 @@ clean:
rm -f limine limine.exe
limine: limine.c
$(CC) $(CFLAGS) -Wall -Wextra $(WERROR_FLAG) $(CPPFLAGS) $(LDFLAGS) -std=c99 limine.c $(LIBS) -o $@
$(CC) $(CFLAGS) -std=c99 $(CPPFLAGS) $(LDFLAGS) $< $(LIBS) -o $@

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

@@ -1088,6 +1088,11 @@ part_too_low:
goto cleanup;
}
if (((ENDSWAP(gpt_entry.ending_lba) - ENDSWAP(gpt_entry.starting_lba)) + 1) * lb_size < 32768) {
fprintf(stderr, "%s: error: Partition with index `%s` is smaller than 32KiB.\n", program_name, part_ndx);
goto cleanup;
}
if (!quiet) {
fprintf(stderr, "GPT partition specified. Installing there instead of embedding.\n");
}
@@ -1386,7 +1391,7 @@ cleanup:
return ret;
}
#define LIMINE_VERSION "9.6.0"
#define LIMINE_VERSION "9.6.1"
#define LIMINE_COPYRIGHT "Copyright (C) 2019-2025 Mintsuki and contributors."
static void version_usage(void) {

Binary file not shown.