Compare commits

...

24 Commits

Author SHA1 Message Date
mintsuki
5e80c352b9 Binary release v4.20221030.0 2022-10-30 14:03:59 +00:00
mintsuki
a5e7f38cc2 Binary release v4.20221017.0 2022-10-17 04:47:16 +00:00
mintsuki
2c85786a52 Binary release v4.20221016.0 2022-10-15 23:33:06 +00:00
mintsuki
0a1f12489e Binary release v4.20221014.1 2022-10-14 12:35:31 +00:00
mintsuki
bbd431734c Binary release v4.20221014.0 2022-10-14 05:59:03 +00:00
mintsuki
9bc21d950b Binary release v4.20221011.0 2022-10-11 04:08:39 +00:00
mintsuki
d226495700 Binary release v4.20221009.0 2022-10-11 04:01:56 +00:00
mintsuki
d3946db8e5 Binary release v4.20221009.0 2022-10-09 09:11:20 +00:00
mintsuki
d751561213 Binary release v4.20221007.0 2022-10-07 08:17:56 +00:00
mintsuki
230ee889d5 Binary release v4.20221006.2 2022-10-06 17:22:10 +00:00
mintsuki
0921b91588 Binary release v4.20221006.1 2022-10-06 04:40:30 +00:00
mintsuki
59f397d233 Binary release v4.20221006.0 2022-10-06 04:36:47 +00:00
mintsuki
1289204488 Binary release v4.20221005.0 2022-10-05 13:06:49 +00:00
mintsuki
28375c5379 Binary release v4.20221004.0 2022-10-04 20:24:06 +00:00
mintsuki
8f0a0ca842 Binary release v4.20220928.0 2022-09-28 00:11:34 +00:00
mintsuki
3f91478cc6 Binary release v4.20220927.0 2022-09-27 04:58:35 +00:00
mintsuki
582d95603e Binary release v4.3 2022-09-24 02:37:43 +00:00
mintsuki
1b5a583450 Binary release v4.2 2022-09-22 16:19:41 +00:00
mintsuki
cae7e0f0ed Binary release v4.1.3 2022-09-20 21:59:04 +00:00
mintsuki
3aa26afa53 Binary release v4.1.2 2022-09-20 08:39:22 +00:00
mintsuki
b54eacf150 Binary release v4.1.1 2022-09-18 22:05:29 +00:00
mintsuki
d06879243c Binary release v4.1 2022-09-16 09:52:17 +00:00
mintsuki
74e3de6f96 Binary release v4.0.4 2022-09-15 01:19:29 +00:00
mintsuki
3a00a6f7cc Binary release v4.0.3 2022-09-12 10:11:11 +00:00
13 changed files with 1184 additions and 1178 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -38,8 +38,8 @@ clean:
rm -f limine-deploy limine-deploy.exe
rm -f limine-version limine-version.exe
limine-deploy: limine-deploy.c
$(CC) $(CFLAGS) $(LDFLAGS) -std=c99 -D__USE_MINGW_ANSI_STDIO limine-deploy.c -o $@
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
$(CC) $(CFLAGS) $(LDFLAGS) -std=c99 -D__USE_MINGW_ANSI_STDIO limine-version.c -o $@
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -std=c99 -D__USE_MINGW_ANSI_STDIO limine-version.c $(LIBS) -o $@

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 "4.0.2"
#define LIMINE_VERSION "4.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.