summaryrefslogtreecommitdiff
path: root/kernel/src/boot/tag.h
diff options
context:
space:
mode:
authorTyler Murphy <=>2023-07-16 19:56:56 -0400
committerTyler Murphy <=>2023-07-16 19:56:56 -0400
commit8ad6ef551e9a1c51a77f3662978c7559556897d6 (patch)
treeed07aeae3122a009385d7db8fc98a61b25c38c99 /kernel/src/boot/tag.h
parentinitial (diff)
downloadfinix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.gz
finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.tar.bz2
finix-8ad6ef551e9a1c51a77f3662978c7559556897d6.zip
time
Diffstat (limited to 'kernel/src/boot/tag.h')
-rw-r--r--kernel/src/boot/tag.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/src/boot/tag.h b/kernel/src/boot/tag.h
index f9853e5..a81e443 100644
--- a/kernel/src/boot/tag.h
+++ b/kernel/src/boot/tag.h
@@ -4,7 +4,6 @@
#include <stdint.h>
#include "acpi/acpi.h"
-#include "graphics/framebuffer.h"
#include "memory/memory.h"
#define CMDLINE_MAX 32
@@ -15,7 +14,6 @@ struct BootTag {
uint32_t size;
union {
char cmdline[CMDLINE_MAX];
- struct Framebuffer *framebuffer;
struct MemoryMap *memory_map;
struct RootSystemDescriptionPointer *rsdp;
} data;
@@ -30,7 +28,6 @@ struct BootInfo {
enum BootTagID {
ID_CMDLINE = 0,
iD_MEMORYMAP = 6,
- ID_FRAMEBUFFER = 8,
ID_RSDP = 14
};