summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--Makefile.private1
-rw-r--r--README2
-rw-r--r--README.menu2
-rw-r--r--README.usbkey2
-rw-r--r--TODO2
-rw-r--r--bin2c.pl1
-rwxr-xr-xbin2hex.pl1
-rw-r--r--com32/lib/MCONFIG1
-rw-r--r--com32/lib/sys/entry.S1
-rw-r--r--com32/lib/sys/exit.S1
-rw-r--r--com32/libutil/Makefile1
-rw-r--r--com32/modules/Makefile1
-rw-r--r--com32/samples/Makefile1
-rw-r--r--comboot.doc1
-rw-r--r--dos/memcpy.S1
-rw-r--r--dos/memset.S1
-rwxr-xr-xlss16toppm1
-rw-r--r--memdisk/Makefile1
-rw-r--r--memdisk/memcpy.S1
-rw-r--r--memdisk/memdisk.doc1
-rw-r--r--memdisk/memset.S1
-rwxr-xr-xmemdisk/postprocess.pl1
-rw-r--r--memdisk/start32.S1
-rw-r--r--menu/Makefile1
-rwxr-xr-xmkdiskimage.in1
-rw-r--r--now.pl1
-rwxr-xr-xppmtolss161
-rw-r--r--sample/Makefile1
-rw-r--r--sample/c32entry.S1
-rw-r--r--sample/sample.msg2
-rwxr-xr-xsys2ansi.pl1
-rw-r--r--win32/Makefile1
33 files changed, 2 insertions, 36 deletions
diff --git a/Makefile b/Makefile
index c393fd87..9c66779c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-## $Id$
## -----------------------------------------------------------------------
##
## Copyright 1998-2005 H. Peter Anvin - All Rights Reserved
diff --git a/Makefile.private b/Makefile.private
index e42c2d33..192c38d9 100644
--- a/Makefile.private
+++ b/Makefile.private
@@ -9,7 +9,6 @@
## (at your option) any later version; incorporated herein by reference.
##
## -----------------------------------------------------------------------
-# $Id$
#
# This should only be used by the maintainer to generate official binaries
diff --git a/README b/README
index ea67e355..60941363 100644
--- a/README
+++ b/README
@@ -22,7 +22,7 @@ for details.
SYSLINUX is:
- Copyright 1994-2005 H. Peter Anvin - All Rights Reserved
+ Copyright 1994-2006 H. Peter Anvin - All Rights Reserved
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/README.menu b/README.menu
index 27ae0de2..a9afade1 100644
--- a/README.menu
+++ b/README.menu
@@ -1,5 +1,3 @@
-$Id$
-
There are two menu systems included with SYSLINUX, the advanced menu
system, and the simple menu system.
diff --git a/README.usbkey b/README.usbkey
index 7dd551e5..33613d69 100644
--- a/README.usbkey
+++ b/README.usbkey
@@ -1,5 +1,3 @@
-$Id$
-
The proper mode to boot a USB key drive in is "USB-HDD". That is the
ONLY mode in which the C/H/S geometry encoded on the disk itself
doesn't have to match what the BIOS thinks it is. Since geometry on
diff --git a/TODO b/TODO
index f84cc624..42a578e4 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,3 @@
-$Id$
-
*** To do in the short term:
- PXELINUX: Figure out localboot/idle problems
diff --git a/bin2c.pl b/bin2c.pl
index f50e2e7f..5ef1c034 100644
--- a/bin2c.pl
+++ b/bin2c.pl
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-## $Id$
## -----------------------------------------------------------------------
##
## Copyright 1998-2004 H. Peter Anvin - All Rights Reserved
diff --git a/bin2hex.pl b/bin2hex.pl
index 528c6325..5fcf8805 100755
--- a/bin2hex.pl
+++ b/bin2hex.pl
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-## "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2003 H. Peter Anvin - All Rights Reserved
diff --git a/com32/lib/MCONFIG b/com32/lib/MCONFIG
index 7c4e2dfe..35d34d7c 100644
--- a/com32/lib/MCONFIG
+++ b/com32/lib/MCONFIG
@@ -1,5 +1,4 @@
# -*- makefile -*-
-# $Id$
CC = gcc
LD = ld
diff --git a/com32/lib/sys/entry.S b/com32/lib/sys/entry.S
index e12c65a7..4df2f06d 100644
--- a/com32/lib/sys/entry.S
+++ b/com32/lib/sys/entry.S
@@ -1,4 +1,3 @@
-#ident "$Id$"
# -----------------------------------------------------------------------
#
# Copyright 2003-2004 H. Peter Anvin - All Rights Reserved
diff --git a/com32/lib/sys/exit.S b/com32/lib/sys/exit.S
index 412384ef..024aaf5e 100644
--- a/com32/lib/sys/exit.S
+++ b/com32/lib/sys/exit.S
@@ -1,4 +1,3 @@
-# $Id$
#
# Implementation of _exit() for com32 based on c32entry.S
#
diff --git a/com32/libutil/Makefile b/com32/libutil/Makefile
index c46e05e4..9adeec66 100644
--- a/com32/libutil/Makefile
+++ b/com32/libutil/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/com32/modules/Makefile b/com32/modules/Makefile
index b8984638..fc8c8619 100644
--- a/com32/modules/Makefile
+++ b/com32/modules/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/com32/samples/Makefile b/com32/samples/Makefile
index bce7ca3d..214c0c71 100644
--- a/com32/samples/Makefile
+++ b/com32/samples/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/comboot.doc b/comboot.doc
index be57b8da..cb3488b6 100644
--- a/comboot.doc
+++ b/comboot.doc
@@ -1,4 +1,3 @@
- $Id$
COMBOOT and COM32 files
diff --git a/dos/memcpy.S b/dos/memcpy.S
index d1e65c21..76eef73c 100644
--- a/dos/memcpy.S
+++ b/dos/memcpy.S
@@ -1,4 +1,3 @@
-# $Id$
#
# memcpy.S
#
diff --git a/dos/memset.S b/dos/memset.S
index dd534e7b..86e12ab2 100644
--- a/dos/memset.S
+++ b/dos/memset.S
@@ -1,4 +1,3 @@
-# $Id$
#
# memset.S
#
diff --git a/lss16toppm b/lss16toppm
index d24262ed..ea38dc9d 100755
--- a/lss16toppm
+++ b/lss16toppm
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-## $Id$
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/memdisk/Makefile b/memdisk/Makefile
index ccfef5ed..1cc08b0d 100644
--- a/memdisk/Makefile
+++ b/memdisk/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/memdisk/memcpy.S b/memdisk/memcpy.S
index 61c35b9b..82ec870e 100644
--- a/memdisk/memcpy.S
+++ b/memdisk/memcpy.S
@@ -1,4 +1,3 @@
-# $Id$
#
# memcpy.S
#
diff --git a/memdisk/memdisk.doc b/memdisk/memdisk.doc
index 8483c701..a9a43ac4 100644
--- a/memdisk/memdisk.doc
+++ b/memdisk/memdisk.doc
@@ -1,4 +1,3 @@
-$Id$
[This documentation is rather crufty at the moment.]
MEMDISK is meant to allow booting legacy operating systems via PXE,
diff --git a/memdisk/memset.S b/memdisk/memset.S
index d7dabe12..c6638854 100644
--- a/memdisk/memset.S
+++ b/memdisk/memset.S
@@ -1,4 +1,3 @@
-# $Id$
#
# memset.S
#
diff --git a/memdisk/postprocess.pl b/memdisk/postprocess.pl
index b93e097b..31bde4a3 100755
--- a/memdisk/postprocess.pl
+++ b/memdisk/postprocess.pl
@@ -10,7 +10,6 @@
## (at your option) any later version; incorporated herein by reference.
##
## -----------------------------------------------------------------------
-## $Id$
#
# Postprocess the memdisk binary.
diff --git a/memdisk/start32.S b/memdisk/start32.S
index c4801bbd..ee89b71d 100644
--- a/memdisk/start32.S
+++ b/memdisk/start32.S
@@ -1,4 +1,3 @@
-# $Id$
#
# Simple stub to get us to the right point in the 32-bit code;
# this module must be linked first
diff --git a/menu/Makefile b/menu/Makefile
index 727657fa..91a8697e 100644
--- a/menu/Makefile
+++ b/menu/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2005 H. Peter Anvin - All Rights Reserved
diff --git a/mkdiskimage.in b/mkdiskimage.in
index 88a8c024..3db9bbe0 100755
--- a/mkdiskimage.in
+++ b/mkdiskimage.in
@@ -1,6 +1,5 @@
#!/usr/bin/perl
## -----------------------------------------------------------------------
-## $Id$
##
## Copyright 2002-2004 H. Peter Anvin - All Rights Reserved
##
diff --git a/now.pl b/now.pl
index 6645558c..a3b5a798 100644
--- a/now.pl
+++ b/now.pl
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-# $Id$
#
# Print the time (possibly the mtime of a file) as a hexadecimal integer
# If more than one file, print the mtime of the *newest* file.
diff --git a/ppmtolss16 b/ppmtolss16
index 19fbe2db..7fd5a21d 100755
--- a/ppmtolss16
+++ b/ppmtolss16
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-## $Id$
## -----------------------------------------------------------------------
##
## Copyright 2004 H. Peter Anvin - All Rights Reserved
diff --git a/sample/Makefile b/sample/Makefile
index d7c40fad..b92f820b 100644
--- a/sample/Makefile
+++ b/sample/Makefile
@@ -1,4 +1,3 @@
-#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
diff --git a/sample/c32entry.S b/sample/c32entry.S
index 3917168f..6b58db85 100644
--- a/sample/c32entry.S
+++ b/sample/c32entry.S
@@ -1,4 +1,3 @@
-#ident "$Id$"
# -----------------------------------------------------------------------
#
# Copyright 2003 H. Peter Anvin - All Rights Reserved
diff --git a/sample/sample.msg b/sample/sample.msg
index b9e1ad7d..e93cd624 100644
--- a/sample/sample.msg
+++ b/sample/sample.msg
@@ -1,4 +1,4 @@
- $Id$
+sample.msg
Note that <Ctrl-P>...<Ctrl-W> can be used to delimit something
that is effectively a comment.
This message is displayed before the image.
diff --git a/sys2ansi.pl b/sys2ansi.pl
index b64fe243..085f6c97 100755
--- a/sys2ansi.pl
+++ b/sys2ansi.pl
@@ -1,5 +1,4 @@
#!/usr/bin/perl
-# $Id$
#
# Perl script to convert a Syslinux-format screen to PC-ANSI
# to display in a color xterm or on the Linux console
diff --git a/win32/Makefile b/win32/Makefile
index 37986137..b83a91ec 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1,4 +1,3 @@
-## $Id$
## -----------------------------------------------------------------------
##
## Copyright 1998-2004 H. Peter Anvin - All Rights Reserved