diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-20 20:32:44 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:34 +0200 |
commit | 2a50c925882fe2d6535f130401eb6d4a4feb3e93 (patch) | |
tree | d27cd8aeaa2aef88f0a604827bee78fe068f4cb6 | |
parent | d8ae6e264f06044497ed4d029e6e44d4a28b10b6 (diff) |
2006-02-20 Thomas Schwinge <tschwinge@gnu.org>
Remove unused and unsupported code. Consult the file
`DEVELOPMENT' for details. Partly based on suggestions by
Gianluca Guida <glguida@gmail.com>.
* i386/i386at/asm_startup.h: Remove file.
* i386/i386at/phys_mem_grab_page.c: Likewise.
* i386/Makefile.in (i386at-files): Remove `phys_mem_grab_page.c'.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | i386/Makefile.in | 2 | ||||
-rw-r--r-- | i386/i386at/asm_startup.h | 42 | ||||
-rw-r--r-- | i386/i386at/phys_mem_grab_page.c | 1 |
4 files changed, 5 insertions, 44 deletions
@@ -4,6 +4,10 @@ `DEVELOPMENT' for details. Partly based on suggestions by Gianluca Guida <glguida@gmail.com>. + * i386/i386at/asm_startup.h: Remove file. + * i386/i386at/phys_mem_grab_page.c: Likewise. + * i386/Makefile.in (i386at-files): Remove `phys_mem_grab_page.c'. + * i386/bogus/evc.h: Remove file. * i386/i386at/kd.c: Don't include <evc.h> anymore and adopt all users of NEVC as if it were always defined to `0'. diff --git a/i386/Makefile.in b/i386/Makefile.in index eaa03b7..fdd04f2 100644 --- a/i386/Makefile.in +++ b/i386/Makefile.in @@ -72,7 +72,7 @@ endif # Source files for any i386 kernel i386at-files = autoconf.c blit.c conf.c cons_conf.c rtc.c \ i386at_ds_routines.c immc.c int_init.c iopl.c kd.c kd_event.c \ - kd_mouse.c kd_queue.c model_dep.c phys_mem_grab_page.c pic_isa.c + kd_mouse.c kd_queue.c model_dep.c pic_isa.c i386-files = ast_check.c db_disasm.c db_interface.c db_trace.c debug_i386.c \ fpe_linkage.c fpu.c gdt.c hardclock.c idt.c io_emulate.c io_map.c \ iopb.c ktss.c kttd_interface.c ldt.c loose_ends.c mp_desc.c pcb.c \ diff --git a/i386/i386at/asm_startup.h b/i386/i386at/asm_startup.h deleted file mode 100644 index 5b35293..0000000 --- a/i386/i386at/asm_startup.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Mach Operating System - * Copyright (c) 1991,1990 Carnegie Mellon University - * All Rights Reserved. - * - * Permission to use, copy, modify and distribute this software and its - * documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie Mellon - * the rights to redistribute these changes. - */ -/* - * Startup code for an i386 on an AT. - * Kernel is loaded starting at 1MB. - * Protected mode, paging disabled. - * - * %esp -> boottype - * size of extended memory (K) - * size of conventional memory (K) - * boothowto - * - */ - - popl _boottype+KVTOPHYS /* get boottype */ - popl _extmem+KVTOPHYS /* extended memory, in K */ - popl _cnvmem+KVTOPHYS /* conventional memory, in K */ - popl _boothowto+KVTOPHYS /* boot flags */ - diff --git a/i386/i386at/phys_mem_grab_page.c b/i386/i386at/phys_mem_grab_page.c deleted file mode 100644 index 8ceaca6..0000000 --- a/i386/i386at/phys_mem_grab_page.c +++ /dev/null @@ -1 +0,0 @@ -/*XXX bogus kludge */ |