From dce9106bcb47ef37a4cf5a221340f4eb438aedfe Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 18 Apr 2020 19:27:00 +0200 Subject: Added fadt flags and ACPI reboot --- src/kernel/multiboot.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src/kernel/multiboot.c') diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c index 8f20662..fb96e10 100644 --- a/src/kernel/multiboot.c +++ b/src/kernel/multiboot.c @@ -15,57 +15,57 @@ void multiboot_parse(uint32_t multiboot_address) tag = (struct multiboot_tag *)((multiboot_uint8_t *)tag + ((tag->size + 7) & ~7))) { switch (tag->type) { case MULTIBOOT_TAG_TYPE_CMDLINE: - info("Got cmdline"); + debug("Got cmdline"); break; case MULTIBOOT_TAG_TYPE_BOOT_LOADER_NAME: - info("Got bootloader name: %s", + debug("Got bootloader name: %s", ((struct multiboot_tag_string *)tag)->string); break; case MULTIBOOT_TAG_TYPE_MODULE: - info("Got modules"); + debug("Got modules"); break; case MULTIBOOT_TAG_TYPE_BOOTDEV: - info("Got boot device"); + debug("Got boot device"); break; case MULTIBOOT_TAG_TYPE_VBE: - info("Got VBE info"); + debug("Got VBE debug"); break; case MULTIBOOT_TAG_TYPE_FRAMEBUFFER: - info("Got framebuffer info"); + debug("Got framebuffer debug"); break; case MULTIBOOT_TAG_TYPE_APM: - info("Got APM table"); + debug("Got APM table"); break; case MULTIBOOT_TAG_TYPE_EFI32: - info("Got EFI32"); + debug("Got EFI32"); break; case MULTIBOOT_TAG_TYPE_SMBIOS: // GRUB doesn't detect SMBIOS on QEMU! - info("Got SMBIOS table"); + debug("Got SMBIOS table"); smbios_init((struct multiboot_tag_smbios *)tag); break; case MULTIBOOT_TAG_TYPE_ACPI_OLD: - info("Got ACPI 1.0 table"); + debug("Got ACPI 1.0 table"); acpi_old_init((struct multiboot_tag_old_acpi *)tag); break; case MULTIBOOT_TAG_TYPE_ACPI_NEW: - info("Got ACPI 2.0 table"); + debug("Got ACPI 2.0 table"); acpi_new_init((struct multiboot_tag_new_acpi *)tag); break; case MULTIBOOT_TAG_TYPE_NETWORK: - info("Got network info"); + debug("Got network debug"); break; case MULTIBOOT_TAG_TYPE_EFI_MMAP: - info("Got EFI memory map"); + debug("Got EFI memory map"); break; case MULTIBOOT_TAG_TYPE_EFI_BS: - info("Got EFI boot services"); + debug("Got EFI boot services"); break; case MULTIBOOT_TAG_TYPE_EFI32_IH: - info("Got EFI image handler pointer"); + debug("Got EFI image handler pointer"); break; case MULTIBOOT_TAG_TYPE_LOAD_BASE_ADDR: - info("Got image load base address"); + debug("Got image load base address"); break; } } -- cgit v1.2.3