From 458e7c3bf593489440ddbfdd82d2fb108eae3a6f Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 14 Oct 2025 19:55:36 -0400 Subject: kern: Add initial DMS framework DMS stands for Disk Management and Supervision, drivers can register themselves to DMS so that they can be looked up and operated on. Signed-off-by: Ian Moffett --- src/sys/os/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sys/os/Makefile') diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile index 67965ec..56543e5 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -14,6 +14,7 @@ CFILES += $(shell find ../acpi -name "*.c") CFILES += $(shell find ../compat -name "*.c") CFILES += $(shell find ../fs -name "*.c") CFILES += $(shell find ../np -name "*.c") +CFILES += $(shell find ../dms -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) -- cgit v1.2.3