From: H. Peter Anvin Date: Sun, 22 Mar 2009 05:29:09 +0000 (-0700) Subject: Add "and contributors" to the copyright banner X-Git-Tag: syslinux-3.74-pre12~8^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fc8259d568263e06b076f6a782123a2393503df;p=platform%2Fupstream%2Fsyslinux.git Add "and contributors" to the copyright banner Clarify that there are nowadays more copyright holders than just myself. --- diff --git a/core/extlinux.asm b/core/extlinux.asm index 9684c8a..5c6c023 100644 --- a/core/extlinux.asm +++ b/core/extlinux.asm @@ -1553,7 +1553,7 @@ build_curdir_str: section .data copyright_str db ' Copyright (C) 1994-' asciidec YEAR - db ' H. Peter Anvin', CR, LF, 0 + db ' H. Peter Anvin and contributors', CR, LF, 0 err_bootfailed db CR, LF, 'Boot failed: please change disks and press ' db 'a key to continue.', CR, LF, 0 config_name db 'extlinux.conf',0 ; Unmangled form diff --git a/core/isolinux.asm b/core/isolinux.asm index 51d3bcd..2da96d4 100644 --- a/core/isolinux.asm +++ b/core/isolinux.asm @@ -1029,7 +1029,7 @@ writestr_early equ writestr syslinux_banner db CR, LF, 'ISOLINUX ', VERSION_STR, ' ', DATE_STR, ' ', 0 copyright_str db ' Copyright (C) 1994-' asciidec YEAR - db ' H. Peter Anvin', CR, LF, 0 + db ' H. Peter Anvin and contributors', CR, LF, 0 isolinux_str db 'isolinux: ', 0 %ifdef DEBUG_MESSAGES startup_msg: db 'Starting up, DL = ', 0 diff --git a/core/ldlinux.asm b/core/ldlinux.asm index 2219d5f..b05a7e1 100644 --- a/core/ldlinux.asm +++ b/core/ldlinux.asm @@ -2056,7 +2056,7 @@ getfatsector: section .data copyright_str db ' Copyright (C) 1994-' asciidec YEAR - db ' H. Peter Anvin', CR, LF, 0 + db ' H. Peter Anvin and contributors', CR, LF, 0 err_bootfailed db CR, LF, 'Boot failed: please change disks and press ' db 'a key to continue.', CR, LF, 0 syslinux_cfg1 db '/boot' ; /boot/syslinux/syslinux.cfg diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 7c535af..6a38e5f 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -2657,7 +2657,7 @@ writestr_early equ writestr copyright_str db ' Copyright (C) 1994-' asciidec YEAR - db ' H. Peter Anvin', CR, LF, 0 + db ' H. Peter Anvin and contributors', CR, LF, 0 err_bootfailed db CR, LF, 'Boot failed: press a key to retry, or wait for reset...', CR, LF, 0 bailmsg equ err_bootfailed err_nopxe db "No !PXE or PXENV+ API found; we're dead...", CR, LF, 0 diff --git a/memdisk/setup.c b/memdisk/setup.c index b492b0d..1939a69 100644 --- a/memdisk/setup.c +++ b/memdisk/setup.c @@ -20,7 +20,7 @@ const char memdisk_version[] = "MEMDISK " VERSION_STR " " DATE; const char copyright[] = -"Copyright " FIRSTYEAR "-" YEAR_STR " H. Peter Anvin"; +"Copyright " FIRSTYEAR "-" YEAR_STR " H. Peter Anvin and contributors"; extern const char _binary_memdisk_chs_bin_start[]; extern const char _binary_memdisk_chs_bin_end[];