summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>2002-01-02 07:09:50 +0000
committerhpa <hpa>2002-01-02 07:09:50 +0000
commit3992becdb3d8e424506976518d8a3da011f954be (patch)
treeaea1fe0c3f2368e6485065403cdc12eec648b875
parenta0208c5997d850e3c8a6369f1bad8914114e4077 (diff)
downloadsyslinux-3992becdb3d8e424506976518d8a3da011f954be.tar.gz
Update copyright date, and change work-in-progress version to 1.67.
-rw-r--r--NEWS4
-rw-r--r--isolinux.asm4
-rw-r--r--ldlinux.asm4
-rw-r--r--memdisk/setup.c7
-rw-r--r--pxelinux.asm4
-rw-r--r--version2
6 files changed, 14 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index e6271428..71a6c024 100644
--- 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
diff --git a/isolinux.asm b/isolinux.asm
index e5d867d3..e9803c09 100644
--- a/isolinux.asm
+++ b/isolinux.asm
@@ -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
;
diff --git a/ldlinux.asm b/ldlinux.asm
index fc58af47..62e8537e 100644
--- a/ldlinux.asm
+++ b/ldlinux.asm
@@ -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
;
diff --git a/memdisk/setup.c b/memdisk/setup.c
index e72f4b64..c7560d36 100644
--- a/memdisk/setup.c
+++ b/memdisk/setup.c
@@ -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");
diff --git a/pxelinux.asm b/pxelinux.asm
index fcedad59..72c0fc2a 100644
--- a/pxelinux.asm
+++ b/pxelinux.asm
@@ -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 9cf4011b..9ebd7af3 100644
--- a/version
+++ b/version
@@ -1 +1 @@
-1.66
+1.67