Compare commits

...

4 Commits

Author SHA1 Message Date
mintsuki
9538b1431a Binary release v5.20230928.2 2023-09-28 23:04:14 +00:00
mintsuki
061c170fc7 Binary release v5.20230928.1 2023-09-28 21:39:58 +00:00
mintsuki
70b08ec60c Binary release v5.20230928.0 2023-09-28 12:07:01 +00:00
mintsuki
f9980cf7cb Binary release v5.20230924.0 2023-09-24 07:16:43 +00:00
12 changed files with 1139 additions and 1140 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.20230928.2"
#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;