Update copyright date, and change work-in-progress version to 1.67.
authorhpa <hpa>
Wed, 2 Jan 2002 07:09:50 +0000 (07:09 +0000)
committerhpa <hpa>
Wed, 2 Jan 2002 07:09:50 +0000 (07:09 +0000)
NEWS
isolinux.asm
ldlinux.asm
memdisk/setup.c
pxelinux.asm
version

diff --git a/NEWS b/NEWS
index e627142..71a6c02 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,11 @@
 Starting with 1.47, changes marked with SYSLINUX/PXELINUX/ISOLINUX
 apply to that specific program only; other changes apply to both.
 
+Changes in 1.67:
+       * Major code restructuring.
+
 Changes in 1.66:
        * MEMDISK: Make compile with newer versions of gcc.
-       * Major code restructuring.
 
 Changes in 1.65:
        * ISOLINUX: Support booting disk image files (to boot DOS or
index e5d867d..e9803c0 100644 (file)
@@ -9,7 +9,7 @@
 ;  available.  It is based on the SYSLINUX boot loader for MS-DOS
 ;  floppies.
 ;
-;   Copyright (C) 1994-2001  H. Peter Anvin
+;   Copyright (C) 1994-2002  H. Peter Anvin
 ;
 ;  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
@@ -58,7 +58,7 @@ SECTORSIZE    equ (1 << SECTORSIZE_LG2)
 ;
 %define        version_str     VERSION         ; Must be 4 characters long!
 %define date           DATE_STR        ; Defined from the Makefile
-%define        year            '2001'
+%define        year            '2002'
 ;
 ; Debgging stuff
 ;
index fc58af4..62e8537 100644 (file)
@@ -16,7 +16,7 @@
 ;  then the first sector (cluster, really, but we can only assume 1 sector)
 ;  of LDLINUX.SYS at 7E00h and finally the remainder of LDLINUX.SYS at 8000h.
 ;
-;   Copyright (C) 1994-2001  H. Peter Anvin
+;   Copyright (C) 1994-2002  H. Peter Anvin
 ;
 ;  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
@@ -40,7 +40,7 @@ BAUD_DIVISOR  equ 115200              ; Serial port parameter
 ;
 %define        version_str     VERSION         ; Must be 4 characters long!
 %define date           DATE_STR        ; Defined from the Makefile
-%define        year            '2001'
+%define        year            '2002'
 ;
 ; Debgging stuff
 ;
index e72f4b6..c7560d3 100644 (file)
@@ -1,7 +1,7 @@
 #ident "$Id$"
 /* ----------------------------------------------------------------------- *
  *   
- *   Copyright 2001 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2001-2002 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
@@ -15,7 +15,8 @@
 #include "e820.h"
 #include "conio.h"
 
-#define COPYYEAR "2001"
+#define FIRSTYEAR "2001"
+#define COPYYEAR  "2002"
 
 extern const char _binary_memdisk_bin_start[], _binary_memdisk_bin_end[];
 extern const char _binary_memdisk_bin_size[]; /* Weird, I know */
@@ -438,7 +439,7 @@ uint32_t setup(void)
 
   /* Show signs of life */
   puts("MEMDISK " VERSION " " DATE
-       "  Copyright " COPYYEAR " H. Peter Anvin\n");
+       "  Copyright " FIRSTYEAR "-" COPYYEAR " H. Peter Anvin\n");
 
   if ( !shdr->ramdisk_image || !shdr->ramdisk_size ) {
     puts("MEMDISK: No ramdisk image specified!\n");
index fcedad5..72c0fc2 100644 (file)
@@ -8,7 +8,7 @@
 ;  network booting API.  It is based on the SYSLINUX boot loader for
 ;  MS-DOS floppies.
 ;
-;   Copyright (C) 1994-2001  H. Peter Anvin
+;   Copyright (C) 1994-2002  H. Peter Anvin
 ;
 ;  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
@@ -64,7 +64,7 @@ TFTP_OACK     equ htons(6)            ; OACK packet
 ;
 %define        version_str     VERSION         ; Must be 4 characters long!
 %define date           DATE_STR        ; Defined from the Makefile
-%define        year            '2001'
+%define        year            '2002'
 ;
 ; Debgging stuff
 ;
diff --git a/version b/version
index 9cf4011..9ebd7af 100644 (file)
--- a/version
+++ b/version
@@ -1 +1 @@
-1.66
+1.67