diff options
author | Marvin Borner | 2020-04-14 23:42:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-14 23:42:03 +0200 |
commit | b11a2a876e7bd14078d26e12eab62db997a4dc76 (patch) | |
tree | f2ba2781d3d059810e3a0ccb04f637444c448e5e /src/kernel/acpi/acpi.c | |
parent | 4391a5a374b7b75ca8fa69d35dcb5c5f9ad7f765 (diff) |
Switched to grub
This really isn't what I wanted because grub is very big and bloaty but
my own bootloader was very poorly written and I really want to implement
a filesystem like ext2 which wouldn't work with my own bootloader.
Furthermore this commit fixes many small issues including the one
occurring due to the statically linked user binary (I just removed
the linking for now).
Diffstat (limited to 'src/kernel/acpi/acpi.c')
-rw-r--r-- | src/kernel/acpi/acpi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/acpi/acpi.c b/src/kernel/acpi/acpi.c index 57ecc58..e129a95 100644 --- a/src/kernel/acpi/acpi.c +++ b/src/kernel/acpi/acpi.c @@ -166,10 +166,10 @@ int acpi_install() } if (memcmp((unsigned int *)*ptr, "HPET", 4) == 0) { hpet = (struct HPET *)*ptr; - serial_printf("%c%c%c%c", hpet->signature[0], hpet->signature[1], - hpet->signature[2], hpet->signature[3]); - serial_printf("%d", hpet->legacy_replacement); - serial_printf("%d", hpet->address.address); + //serial_printf("%c%c%c%c", hpet->signature[0], hpet->signature[1], + //hpet->signature[2], hpet->signature[3]); + //serial_printf("%d", hpet->legacy_replacement); + //serial_printf("%d", hpet->address.address); } ptr++; } // Else: no valid FADT present |