diff options
-rw-r--r-- | serverboot/Makefile | 15 | ||||
-rw-r--r-- | serverboot/bootstrap.c | 67 |
2 files changed, 16 insertions, 66 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 diff --git a/serverboot/bootstrap.c b/serverboot/bootstrap.c index 3d298a5a..0b8b25a1 100644 --- a/serverboot/bootstrap.c +++ b/serverboot/bootstrap.c @@ -65,10 +65,6 @@ extern void default_pager(); extern void default_pager_initialize(); extern void default_pager_setup(); -/* initialized in default_pager_initialize */ -extern mach_port_t default_pager_exception_port; -extern mach_port_t default_pager_bootstrap_port; - /* * Convert ASCII to integer. */ @@ -153,25 +149,13 @@ main(argc, argv) char **argv; { int die = 0; - int script_paging_file (const struct cmd *cmd, int linux_signature) + int script_paging_file (const struct cmd *cmd, int *val) { - if (add_paging_file (bootstrap_master_device_port, cmd->path, - linux_signature)) - printf ("(serverboot): %s: Cannot add paging file\n", cmd->path); + printf ("*** paging files no longer supported in boot scripts ***\n\a" + "*** use swapon %s and/or /etc/fstab instead ***\n", + cmd->path); return 0; } - int script_add_paging_file (const struct cmd *cmd, int *val) - { - return script_paging_file (cmd, 0); - } - int script_add_raw_paging_file (const struct cmd *cmd, int *val) - { - return script_paging_file (cmd, -1); - } - int script_add_linux_paging_file (const struct cmd *cmd, int *val) - { - return script_paging_file (cmd, 1); - } int script_serverboot_ctl (const struct cmd *cmd, int *val) { const char *const ctl = cmd->path; @@ -334,11 +318,6 @@ main(argc, argv) root_name[len] = 0; } - /* - * Set up the default pager. - */ - partition_init(); - { char *cmdline; @@ -352,12 +331,12 @@ main(argc, argv) || boot_script_set_variable ("boot-args", VAL_STR, (int) flag_string) || boot_script_define_function ("add-paging-file", VAL_NONE, - &script_add_paging_file) + &script_paging_file) || boot_script_define_function ("add-raw-paging-file", VAL_NONE, - &script_add_raw_paging_file) + &script_paging_file) || boot_script_define_function ("add-linux-paging-file", VAL_NONE, - &script_add_linux_paging_file) + &script_paging_file) || boot_script_define_function ("serverboot", VAL_NONE, &script_serverboot_ctl) @@ -382,22 +361,6 @@ main(argc, argv) safe_gets (xx, sizeof xx); } - /* - * task_set_exception_port and task_set_bootstrap_port - * both require a send right. - */ - (void) mach_port_insert_right(my_task, default_pager_bootstrap_port, - default_pager_bootstrap_port, - MACH_MSG_TYPE_MAKE_SEND); - (void) mach_port_insert_right(my_task, default_pager_exception_port, - default_pager_exception_port, - MACH_MSG_TYPE_MAKE_SEND); - - /* - * Change our exception port. - */ - (void) task_set_exception_port(my_task, default_pager_exception_port); - result = boot_script_exec (); if (result) @@ -440,19 +403,9 @@ main(argc, argv) } #endif - if (die) - { - printf ("(serverboot): terminating, not becoming default pager\n"); - while (1) - task_terminate (mach_task_self ()); - } - - default_pager_initialize (bootstrap_master_host_port); - - /* - * Become the default pager - */ - default_pager(); + printf ("(serverboot): terminating\n"); + while (1) + task_terminate (mach_task_self ()); /*NOTREACHED*/ } |