diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-04-19 16:36:51 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-04-20 20:54:31 -0400 |
| commit | df899527e67c6c02fd317eeae25a9e7d7f6b3e8a (patch) | |
| tree | 51af0845215fea734295c126e47665f0a1ffc615 /kernel/mboot/mboot.c | |
| parent | set mmap limit (diff) | |
| download | comus-df899527e67c6c02fd317eeae25a9e7d7f6b3e8a.tar.gz comus-df899527e67c6c02fd317eeae25a9e7d7f6b3e8a.tar.bz2 comus-df899527e67c6c02fd317eeae25a9e7d7f6b3e8a.zip | |
UEFI and republicans
Diffstat (limited to '')
| -rw-r--r-- | kernel/mboot/mboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/mboot/mboot.c b/kernel/mboot/mboot.c index 949337d..e4547e7 100644 --- a/kernel/mboot/mboot.c +++ b/kernel/mboot/mboot.c @@ -8,7 +8,7 @@ static volatile void *mboot = NULL; void mboot_init(long magic, volatile void *ptr) { if (magic != MULTIBOOT2_BOOTLOADER_MAGIC) - panic("invalid multiboot magic"); + panic("invalid multiboot magic: %#08lx", magic); mboot = ptr; } |