From adf34ebbd7f683873c260de5d09d989f017e1701 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 28 Feb 2001 08:34:01 +0000 Subject: 2000-12-28 Roland McGrath Override the shared code from serverboot for device access with a new, simpler implementation with no filesystem format support. The new code implements the new default_pager_paging_storage RPC to set up paging areas that can be subsets of whole Mach devices, with no Linux signature checking. The compatibility setup entry point works as before on whole devices. * setup.c, file_io.h: New files. * Makefile (SRCS): Remove def_pager_setup.c, file_io.c, strfcns.c, ext2_file_io.c, ffs_file_io.c, ffs_compat.c, minix_file_io.c, minix_ffs_compat.c; add setup.c to replace them all. --- mach-defpager/Makefile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'mach-defpager/Makefile') diff --git a/mach-defpager/Makefile b/mach-defpager/Makefile index ef59ed1f..96068fc2 100644 --- a/mach-defpager/Makefile +++ b/mach-defpager/Makefile @@ -22,15 +22,12 @@ dir := mach-defpager makemode:= server target := mach-defpager -SRCS := default_pager.c def_pager_setup.c \ - kalloc.c wiring.c main.c \ - file_io.c strfcns.c \ - ext2_file_io.c ffs_file_io.c ffs_compat.c \ - minix_file_io.c minix_ffs_compat.c - -OBJS = $(SRCS:.c=.o) \ - $(addsuffix Server.o,memory_object default_pager memory_object_default \ +SRCS := default_pager.c kalloc.c wiring.c main.c setup.c +OBJS := $(SRCS:.c=.o) \ + $(addsuffix Server.o,\ + memory_object default_pager memory_object_default \ exc bootstrap) +# None of those pay attention to SERVERPREFIX. HURDLIBS:= threads LDFLAGS += -static -- cgit v1.2.3