test: No longer test device tree passing as it is unnecessary
diff --git a/test/limine.conf b/test/limine.conf
index c2bc08fc..4f263370 100644
--- a/test/limine.conf
+++ b/test/limine.conf
@@ -21,7 +21,6 @@ backdrop: 008080
module_string: This is the first module.
module_path: boot():/boot/bg.jpg
- dtb_path: boot():/boot/device_tree.dtb
/Multiboot2 Test
comment: Test of the multiboot2 boot protocol.
diff --git a/test/test.mk b/test/test.mk
index d10c063a..508976c8 100644
--- a/test/test.mk
+++ b/test/test.mk
@@ -127,9 +127,9 @@ override CFLAGS_MB := \
-isystem ../freestnd-c-hdrs/include
ifeq ($(ARCH),x86)
-all: test.elf multiboot2.elf multiboot.elf device_tree.dtb
+all: test.elf multiboot2.elf multiboot.elf
else
-all: test.elf device_tree.dtb
+all: test.elf
endif
flanterm.o: ../flanterm/src/flanterm.c
@@ -159,12 +159,8 @@ multiboot.elf: multiboot_trampoline.o
%.o: %.asm
nasm -felf32 -F dwarf -g $< -o $@
-%.dtb: %.dts
- dtc $< -o $@
-
clean:
rm -rf test.elf limine.o e9print.o memory.o
rm -rf flanterm.o flanterm_fb.o
rm -rf multiboot2.o multiboot2.elf multiboot2_trampoline.o
rm -rf multiboot.o multiboot_trampoline.o multiboot.elf
- rm -rf device_tree.dtb
