Compare commits

...

12 Commits

Author SHA1 Message Date
mintsuki
b5dbed953c Binary release v3.20221030.0 2022-10-30 13:59:18 +00:00
mintsuki
8a28109a17 Binary release v3.20221017.0 2022-10-17 04:39:35 +00:00
mintsuki
7a0c0a7fb3 Binary release v3.20221016.0 2022-10-15 23:27:18 +00:00
mintsuki
bc5dbcae08 Binary release v3.20221014.1 2022-10-14 12:29:54 +00:00
mintsuki
71e05dc165 Binary release v3.20221014.0 2022-10-14 05:49:54 +00:00
mintsuki
97f617767c Binary release v3.20221011.0 2022-10-11 03:57:41 +00:00
mintsuki
13e9ba0ebc Binary release v3.20221009.0 2022-10-09 09:07:51 +00:00
mintsuki
e42e1c0d1b Binary release v3.20221007.0 2022-10-07 08:11:17 +00:00
mintsuki
101c1490f7 Binary release v3.20221006.0 2022-10-06 17:15:56 +00:00
mintsuki
95e78137b0 Binary release v3.20220928.0 2022-09-28 00:07:43 +00:00
mintsuki
ec558edef4 Binary release v3.20220927.0 2022-09-27 04:53:26 +00:00
mintsuki
d96dc79a42 Binary release v3.25 2022-09-24 02:32:11 +00:00
12 changed files with 1392 additions and 1403 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -38,7 +38,7 @@ clean:
rm -f limine-deploy limine-deploy.exe
rm -f limine-version limine-version.exe
limine-deploy: limine-deploy.c
limine-deploy: limine-deploy.c limine-hdd.h
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -std=c99 -D__USE_MINGW_ANSI_STDIO limine-deploy.c $(LIBS) -o $@
limine-version: limine-version.c

Binary file not shown.

Binary file not shown.

View File

@@ -903,8 +903,8 @@ int main(int argc, char *argv[]) {
goto cleanup;
fprintf(stderr, "Reminder: Remember to copy the limine.sys file in either\n"
" the root or /boot directories of one of the partitions\n"
" on the device, or boot will fail!\n");
" the root, /boot, /limine, or /boot/limine directories of\n"
" one of the partitions on the device, or boot will fail!\n");
fprintf(stderr, "Limine deployed successfully!\n");

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#include <stdio.h>
#define LIMINE_VERSION "3.24"
#define LIMINE_VERSION "3.20221030.0"
int main(void) {
puts(LIMINE_VERSION);

View File

@@ -97,6 +97,20 @@ struct limine_hhdm_request {
#define LIMINE_FRAMEBUFFER_RGB 1
struct limine_video_mode {
uint64_t pitch;
uint64_t width;
uint64_t height;
uint16_t bpp;
uint8_t memory_model;
uint8_t red_mask_size;
uint8_t red_mask_shift;
uint8_t green_mask_size;
uint8_t green_mask_shift;
uint8_t blue_mask_size;
uint8_t blue_mask_shift;
};
struct limine_framebuffer {
LIMINE_PTR(void *) address;
uint64_t width;
@@ -113,6 +127,9 @@ struct limine_framebuffer {
uint8_t unused[7];
uint64_t edid_size;
LIMINE_PTR(void *) edid;
/* Revision 1 */
uint64_t mode_count;
LIMINE_PTR(struct limine_video_mode **) modes;
};
struct limine_framebuffer_response {

Binary file not shown.