summaryrefslogtreecommitdiff
path: root/serverboot/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-03-24 01:12:38 +0000
committerRoland McGrath <roland@gnu.org>2002-03-24 01:12:38 +0000
commit0d1e1237ddb5498d265169ec712b79c746fc4ed0 (patch)
tree83293ea6584a3b0f85e3fefce072542c68e881e2 /serverboot/Makefile
parentb08c0190511a921a352549d691f17e91a000493c (diff)
2002-03-23 Roland McGrath <roland@frob.com>
Excised default pager functionality from serverboot. * Makefile (SRCS): Move def_pager_setup.c default_pager.c kalloc.c to (EXTRA_DIST): ... here. (OBJS): Remove *Server.o from here. (MIGSFLAGS): Variable removed. * bootstrap.c (main): Replace paging-file boot-script functions with a stub that prints an error. No longer call partition_init, default_pager_initialize, or default_pager. (default_pager_bootstrap_port): Variable removed. (main): Don't use it. (default_pager_exception_port): Declaration removed. (main): Don't use it. * default_pager.c (default_pager_bootstrap_port): Variable removed. (default_pager_demux_default): Don't use it. (default_pager_initialize): Likewise. (default_pager): Likewise. (do_bootstrap_privileged_ports, bootstrap_compat): Functions removed. [mips] (set_ras_address): Likewise.
Diffstat (limited to 'serverboot/Makefile')
-rw-r--r--serverboot/Makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/serverboot/Makefile b/serverboot/Makefile
index c4d37430..967ca33f 100644
--- a/serverboot/Makefile
+++ b/serverboot/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1997,99,2001 Free Software Foundation, Inc.
+# Copyright (C) 1997,99,2001,02 Free Software Foundation, Inc.
# This file is part of the GNU Hurd.
#
# The GNU Hurd is free software; you can redistribute it and/or modify
@@ -18,13 +18,14 @@
dir := serverboot
makemode := utility
-SRCS = bootstrap.c ffs_compat.c load.c wiring.c def_pager_setup.c \
- ffs_file_io.c minix_ffs_compat.c default_pager.c file_io.c\
- minix_file_io.c ext2_file_io.c kalloc.c strfcns.c exec.c \
+SRCS = bootstrap.c ffs_compat.c load.c wiring.c \
+ ffs_file_io.c minix_ffs_compat.c file_io.c\
+ minix_file_io.c ext2_file_io.c strfcns.c exec.c \
panic.c elf-load.c gunzip.c bunzip2.c
LCLHDRS = assert.h disk_inode_ffs.h fs.h queue.h defs.h \
minix_ffs_compat.h wiring.h dir.h ffs_compat.h minix_fs.h \
disk_inode.h file_io.h minix_super.h mach-exec.h
+EXTRA_DIST = def_pager_setup.c default_pager.c kalloc.c
target = serverboot
HURDLIBS = threads
installationdir = $(bootdir)
@@ -32,9 +33,7 @@ installationdir = $(bootdir)
UNZIP_OBJS = unzip.o inflate.o util.o do-bunzip2.o
OBJS = $(subst .c,.o,$(SRCS)) \
boot_script.o userland-boot.o \
- memory_objectServer.o \
- default_pagerServer.o excServer.o bootstrapServer.o \
- memory_object_defaultServer.o $(UNZIP_OBJS)
+ $(UNZIP_OBJS)
vpath boot_script.c $(srcdir)/../boot
vpath userland-boot.c $(srcdir)/../boot
@@ -45,8 +44,6 @@ VPATH += $(srcdir)/../exec
# It's crucial for serverboot, because swap is not enabled yet.
CPPFLAGS += -I$(srcdir)/../exec -DGZIP -DBZIP2 -DSMALL_BZIP2
-MIGSFLAGS = -DSEQNOS
-
LDFLAGS += -static
include ../Makeconf