Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


(no commit message) PDINDA0
Peter Dinda [Thu, 29 Nov 2007 20:26:38 +0000 (20:26 +0000)]
64 files changed:
palacios/build/Makefile
palacios/include/geekos/argblock.h
palacios/include/geekos/bget.h
palacios/include/geekos/bootinfo.h
palacios/include/geekos/defs.h
palacios/include/geekos/errno.h
palacios/include/geekos/gdt.h
palacios/include/geekos/idt.h
palacios/include/geekos/int.h
palacios/include/geekos/io.h
palacios/include/geekos/irq.h
palacios/include/geekos/kassert.h
palacios/include/geekos/keyboard.h
palacios/include/geekos/kthread.h
palacios/include/geekos/ktypes.h
palacios/include/geekos/list.h
palacios/include/geekos/malloc.h
palacios/include/geekos/mem.h
palacios/include/geekos/paging.h
palacios/include/geekos/range.h
palacios/include/geekos/screen.h
palacios/include/geekos/segment.h
palacios/include/geekos/symbol.h
palacios/include/geekos/synch.h
palacios/include/geekos/timer.h
palacios/include/geekos/trap.h
palacios/include/geekos/tss.h
palacios/include/libc/fmtout.h
palacios/include/libc/string.h
palacios/scripts/mkcdisk
palacios/scripts/mkuprog
palacios/scripts/numsecs
palacios/scripts/pad
palacios/scripts/pw
palacios/scripts/scan
palacios/src/common/string.c
palacios/src/geekos/bget.c
palacios/src/geekos/bootsect.asm
palacios/src/geekos/defs.asm
palacios/src/geekos/fd_boot.asm
palacios/src/geekos/gdt.c
palacios/src/geekos/idt.c
palacios/src/geekos/int.c
palacios/src/geekos/io.c
palacios/src/geekos/irq.c
palacios/src/geekos/keyboard.c
palacios/src/geekos/kthread.c
palacios/src/geekos/lowlevel.asm
palacios/src/geekos/main.c
palacios/src/geekos/malloc.c
palacios/src/geekos/mem.c
palacios/src/geekos/paging.c
palacios/src/geekos/screen.c
palacios/src/geekos/segment.c
palacios/src/geekos/setup.asm
palacios/src/geekos/symbol.asm
palacios/src/geekos/synch.c
palacios/src/geekos/timer.c
palacios/src/geekos/trap.c
palacios/src/geekos/tss.c
palacios/src/vmboot/rombios/makesym.perl
palacios/src/vmboot/rombios/rombios.c
palacios/src/vmboot/vgabios/vbe.c
palacios/src/vmboot/vgabios/vgabios.c

index 941b8bd..7305916 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for GeekOS kernel, userspace, and tools
 # Copyright (c) 2004,2005 David H. Hovemeyer <daveho@cs.umd.edu>
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 # This is free software.  You are permitted to use,
 # redistribute, and modify it as specified in the file "COPYING".
index 54fac8b..0619ea3 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Create and extract the command line argument block for a process
  * Copyright (c) 2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 63a0857..61262cb 100644 (file)
@@ -8,7 +8,7 @@
 
 // Adapted for geekos: http://www.cs.umd.edu/~daveho/geekos/
 // Original version of BGET downloaded from: http://www.fourmilab.ch/bget/
-// $Revision: 1.1 $
+// $Revision: 1.1.1.1 $
 
 // GeekOS changes are (mostly) confined to #if defined (GEEKOS)
 // sections.
index bb50de1..f7cfd56 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Boot information structure, passed to kernel Main() routine
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index bc631c1..79bd1dd 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Misc. kernel definitions
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 3159eae..ca65581 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS error codes
  * Copyright (c) 2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 3ae7b2b..97a6267 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Initialize kernel GDT.
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index b88cf28..fb12983 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS IDT initialization code
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index a80d142..7537207 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS interrupt handling data structures and functions
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index bd23614..58f4d92 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * x86 port IO routines
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 3164170..4180fa9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This is the device-driver interface to the interrupt system.
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 434a8a8..1afcc89 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Definition of KASSERT() macro, and other useful debug macros
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 1ab5c42..1efdaa9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Keyboard driver
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index f0ef23c..c7cd44e 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Kernel threads
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 7c72a3b..09f2421 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Kernel data types
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 96a7870..b92067f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Generic list data type
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index ba70e92..2eae1ec 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS memory allocation API
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index fdac1aa..a961254 100644 (file)
@@ -2,7 +2,7 @@
  * Physical memory allocation
  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 1810f0b..d8a3936 100644 (file)
@@ -2,7 +2,7 @@
  * Paging (virtual memory) support
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
  * Copyright (c) 2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 15bd023..a946e48 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Range checking
  * Copyright (c) 2003, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 241fc6f..848558a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS text screen output
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 06f302a..0ada2f3 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * General data structures and routines for segmentation
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 61e47bd..dec6f77 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Symbol mangling macros
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * The _S macro mangles a symbol name into whatever format is
  * needed for external linkage.  E.g., prepend an underscore
index 5cb95ef..a3e93eb 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Synchronization primitives
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 37dda14..a84ff38 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS timer interrupt support
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 73c28b8..6424936 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Trap handlers
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 66ea118..71ddac1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * x86 TSS data structure and routines
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 429d7fd..7933a3c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Generalized support for printf()-style formatted output
  * Copyright (c) 2004, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  *
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index fb146c0..f93f8fc 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * String library
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index d3f4477..c1834ff 100755 (executable)
@@ -2,7 +2,7 @@
 
 # Build a binary image containing a pseudo fat filesystem with the listed files
 
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 use FileHandle; 
 
 if ( scalar(@ARGV) < 2 ) {
index 1581b4b..c0a9a9a 100755 (executable)
@@ -3,7 +3,7 @@
 # From a binary image containing a user program, generate
 # C code initializing a User_Program struct.
 
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 use strict qw(refs vars);
 use FileHandle;
index 708a893..0c45c36 100755 (executable)
@@ -3,7 +3,7 @@
 # Find the number of 512-byte sectors needed to store
 # given file.
 
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 use strict qw(refs vars);
 
index c1c5329..7fc2f1b 100755 (executable)
@@ -3,7 +3,7 @@
 # Pad a file with zero bytes to make its length
 # an even multiple of some value.
 
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 use strict qw(refs vars);
 use FileHandle;
index 7edc728..8a0ef3b 100755 (executable)
@@ -1,7 +1,7 @@
 #! /usr/bin/perl
 
 # Inspect a 32 word at a specified offset in a file.
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 use strict qw(refs vars);
 use FileHandle;
index cbfe6dc..9b8ec0c 100755 (executable)
@@ -1,7 +1,7 @@
 #! /usr/bin/perl
 
 # Scan a file for a 32-bit word with a particular value.
-# $Revision: 1.1 $
+# $Revision: 1.1.1.1 $
 
 use strict qw(refs vars);
 use FileHandle;
index 7db896c..e33a23c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * String library
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index cccbe16..648e856 100644 (file)
@@ -1,6 +1,6 @@
 // Adapted for geekos: http://www.cs.umd.edu/~daveho/geekos/
 // Original version of BGET downloaded from: http://www.fourmilab.ch/bget/
-// $Revision: 1.1 $
+// $Revision: 1.1.1.1 $
 
 // GeekOS changes are (mostly) confined to #if defined (GEEKOS)
 // sections.
index 9986818..0b5fd8a 100644 (file)
@@ -1,6 +1,6 @@
 ; Boot sector for GeekOS
 ; Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This is free software.  You are permitted to use,
 ; redistribute, and modify it as specified in the file "COPYING".
index 362fc83..29a4cc0 100644 (file)
@@ -1,6 +1,6 @@
 ; Definitions for use in GeekOS boot code
 ; Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This is free software.  You are permitted to use,
 ; redistribute, and modify it as specified in the file "COPYING".
index e541a9c..2cdec2b 100644 (file)
@@ -1,7 +1,7 @@
 ; Boot sector for GeekOS
 ; Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
 ; Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This is free software.  You are permitted to use,
 ; redistribute, and modify it as specified in the file "COPYING".
index dd0ca5b..78fddec 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Initialize kernel GDT.
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 37c7fd0..78c2b01 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS IDT initialization code
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 319017b..f980ac9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS interrupt handling data structures and functions
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 3132733..d2eda31 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * x86 port IO routines
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 24c5104..5739113 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This is the device-driver interface to the interrupt system.
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 409d9a4..247ef1c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Keyboard driver
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index e2a6df2..b20f68c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Kernel threads
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 63f93c2..3d73631 100644 (file)
@@ -2,7 +2,7 @@
 ; Low level interrupt/thread handling code for GeekOS.
 ; Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
 ; Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This is free software.  You are permitted to use,
 ; redistribute, and modify it as specified in the file "COPYING".
index 2da73ac..d44cadb 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
  * Copyright (c) 2004, Iulian Neamtiu <neamtiu@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index ea76959..5117451 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS memory allocation API
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 2fbc0f5..20320f0 100644 (file)
@@ -2,7 +2,7 @@
  * Physical memory allocation
  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index bb19af3..b0e7a19 100644 (file)
@@ -2,7 +2,7 @@
  * Paging (virtual memory) support
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
  * Copyright (c) 2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 9c78dde..af686d1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GeekOS text screen output
  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 4e83db0..4f9f134 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * General data structures and routines for segmentation
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 56c9938..f31998f 100644 (file)
@@ -1,7 +1,7 @@
 ; -*- fundamental -*-
 ; GeekOS setup code
 ; Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This is free software.  You are permitted to use,
 ; redistribute, and modify it as specified in the file "COPYING".
index 0bb1584..cbe1003 100644 (file)
@@ -1,6 +1,6 @@
 ; Symbol mangling macros
 ; Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
-; $Revision: 1.1 $
+; $Revision: 1.1.1.1 $
 
 ; This file defines macros for dealing with externally-visible
 ; symbols that must be mangled for some object file formats.
index 86e7191..87aa3d1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Synchronization primitives
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index cd89f86..bd795f8 100644 (file)
@@ -2,7 +2,7 @@
  * GeekOS timer interrupt support
  * Copyright (c) 2001,2003 David H. Hovemeyer <daveho@cs.umd.edu>
  * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index 2085a99..624d748 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Trap handlers
  * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index a94bc52..5942a90 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * x86 TSS data structure and routines
  * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.1.1.1 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
index a3c7705..2e5e937 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 #
-# $Id: makesym.perl,v 1.1 2007/11/29 20:26:38 pdinda Exp $
+# $Id: makesym.perl,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $
 #
 # Read output file from as86 (e.g. rombios.txt) and write out a symbol 
 # table suitable for the Bochs debugger.
index b8322d0..a535e85 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////
-// $Id: rombios.c,v 1.1 2007/11/29 20:26:38 pdinda Exp $
+// $Id: rombios.c,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $
 /////////////////////////////////////////////////////////////////////////
 //
 //  Copyright (C) 2002  MandrakeSoft S.A.
@@ -944,10 +944,10 @@ Bit16u cdrom_boot();
 
 #endif // BX_ELTORITO_BOOT
 
-static char bios_cvs_version_string[] = "$Revision: 1.1 $";
+static char bios_cvs_version_string[] = "$Revision: 1.1.1.1 $";
 static char bios_date_string[] = "$Date: 2007/11/29 20:26:38 $";
 
-static char CVSID[] = "$Id: rombios.c,v 1.1 2007/11/29 20:26:38 pdinda Exp $";
+static char CVSID[] = "$Id: rombios.c,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $";
 
 /* Offset to skip the CVS $Id: prefix */ 
 #define bios_version_string  (CVSID + 4)
index 8c06473..4cbe212 100644 (file)
@@ -71,7 +71,7 @@ _vbebios_product_name:
 .byte        0x00
 
 _vbebios_product_revision:
-.ascii       "$Id: vbe.c,v 1.1 2007/11/29 20:26:38 pdinda Exp $"
+.ascii       "$Id: vbe.c,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $"
 .byte        0x00
 
 _vbebios_info_string:
@@ -88,7 +88,7 @@ _no_vbebios_info_string:
 
 #if defined(USE_BX_INFO) || defined(DEBUG)
 msg_vbe_init:
-.ascii      "VBE Bios $Id: vbe.c,v 1.1 2007/11/29 20:26:38 pdinda Exp $"
+.ascii      "VBE Bios $Id: vbe.c,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $"
 .byte  0x0a,0x0d, 0x00
 #endif
 
index 6afa337..7f451cf 100644 (file)
@@ -403,7 +403,7 @@ init_vga_card:
 
 #if defined(USE_BX_INFO) || defined(DEBUG)
 msg_vga_init:
-.ascii "VGABios $Id: vgabios.c,v 1.1 2007/11/29 20:26:38 pdinda Exp $"
+.ascii "VGABios $Id: vgabios.c,v 1.1.1.1 2007/11/29 20:26:38 pdinda Exp $"
 .byte 0x0d,0x0a,0x00
 #endif
 ASM_END