Binary release v5.20230924.0

This commit is contained in:
mintsuki 2023-09-24 07:16:43 +00:00
parent 304764a845
commit f9980cf7cb
12 changed files with 1137 additions and 1137 deletions

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

@ -1120,7 +1120,7 @@ cleanup:
return ret;
}
#define LIMINE_VERSION "5.20230917.0"
#define LIMINE_VERSION "5.20230924.0"
#define LIMINE_COPYRIGHT "Copyright (C) 2019-2023 mintsuki and contributors."
static int version(void) {

Binary file not shown.

View File

@ -330,7 +330,7 @@ struct limine_smp_info {
struct limine_smp_response {
uint64_t revision;
uint32_t flags;
uint64_t flags;
uint64_t bsp_mpidr;
uint64_t cpu_count;
LIMINE_PTR(struct limine_smp_info **) cpus;
@ -339,7 +339,7 @@ struct limine_smp_response {
#elif defined (__riscv) && (__riscv_xlen == 64)
struct limine_smp_info {
uint32_t processor_id;
uint64_t processor_id;
uint64_t hartid;
uint64_t reserved;
LIMINE_PTR(limine_goto_address) goto_address;
@ -348,7 +348,7 @@ struct limine_smp_info {
struct limine_smp_response {
uint64_t revision;
uint32_t flags;
uint64_t flags;
uint64_t bsp_hartid;
uint64_t cpu_count;
LIMINE_PTR(struct limine_smp_info **) cpus;