diff --git a/ChangeLog b/ChangeLog index e42b879fe..bfb0257b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,91 @@ +2004-02-24 Yoshinori K. Okuji + + * genkernsyms.sh: Updated copyright information. + * genmk.rb: Likewise. + * genmodsrc.sh: Likewise. + * gensymlist.sh: Likewise. + * boot/i386/pc/boot.S: Likewise. + * boot/i386/pc/diskboot.S: Likewise. + * disk/i386/pc/biosdisk.c: Likewise. + * disk/i386/pc/partition.c: Likewise. + * font/manager.c: Likewise. + * fs/ext2.c: Likewise. + * fs/fat.c: Likewise. + * include/pupa/boot.h: Likewise. + * include/pupa/device.h: Likewise. + * include/pupa/disk.h: Likewise. + * include/pupa/dl.h: Likewise. + * include/pupa/elf.h: Likewise. + * include/pupa/err.h: Likewise. + * include/pupa/file.h: Likewise. + * include/pupa/font.h: Likewise. + * include/pupa/fs.h: Likewise. + * include/pupa/kernel.h: Likewise. + * include/pupa/loader.h: Likewise. + * include/pupa/misc.h: Likewise. + * include/pupa/mm.h: Likewise. + * include/pupa/net.h: Likewise. + * include/pupa/normal.h: Likewise. + * include/pupa/rescue.h: Likewise. + * include/pupa/setjmp.h: Likewise. + * include/pupa/symbol.h: Likewise. + * include/pupa/term.h: Likewise. + * include/pupa/types.h: Likewise. + * include/pupa/i386/setjmp.h: Likewise. + * include/pupa/i386/types.h: Likewise. + * include/pupa/i386/pc/biosdisk.h: Likewise. + * include/pupa/i386/pc/boot.h: Likewise. + * include/pupa/i386/pc/console.h: Likewise. + * include/pupa/i386/pc/init.h: Likewise. + * include/pupa/i386/pc/kernel.h: Likewise. + * include/pupa/i386/pc/linux.h: Likewise. + * include/pupa/i386/pc/loader.h: Likewise. + * include/pupa/i386/pc/memory.h: Likewise. + * include/pupa/i386/pc/multiboot.h: Likewise. + * include/pupa/i386/pc/partition.h: Likewise. + * include/pupa/i386/pc/time.h: Likewise. + * include/pupa/i386/pc/vga.h: Likewise. + * include/pupa/i386/pc/util/biosdisk.h: Likewise. + * include/pupa/util/getroot.h: Likewise. + * include/pupa/util/misc.h: Likewise. + * include/pupa/util/resolve.h: Likewise. + * kern/device.c: Likewise. + * kern/disk.c: Likewise. + * kern/dl.c: Likewise. + * kern/err.c: Likewise. + * kern/file.c: Likewise. + * kern/fs.c: Likewise. + * kern/loader.c: Likewise. + * kern/main.c: Likewise. + * kern/misc.c: Likewise. + * kern/mm.c: Likewise. + * kern/rescue.c: Likewise. + * kern/term.c: Likewise. + * kern/i386/dl.c: Likewise. + * kern/i386/pc/init.c: Likewise. + * kern/i386/pc/lzo1x.S: Likewise. + * kern/i386/pc/startup.S: Likewise. + * loader/i386/pc/chainloader.c: Likewise. + * loader/i386/pc/linux.c: Likewise. + * loader/i386/pc/multiboot.c: Likewise. + * normal/cmdline.c: Likewise. + * normal/command.c: Likewise. + * normal/main.c: Likewise. + * normal/menu.c: Likewise. + * normal/i386/setjmp.S: Likewise. + * term/i386/pc/console.c: Likewise. + * term/i386/pc/vga.c: Likewise. + * util/console.c: Likewise. + * util/genmoddep.c: Likewise. + * util/misc.c: Likewise. + * util/pupa-emu.c: Likewise. + * util/resolve.c: Likewise. + * util/unifont2pff.rb: Likewise. + * util/i386/pc/biosdisk.c: Likewise. + * util/i386/pc/getroot.c: Likewise. + * util/i386/pc/pupa-mkimage.c: Likewise. + * util/i386/pc/pupa-setup.c: Likewise. + 2004-02-15 Jeroen Dekkers * fs/ext2.c (pupa_ext2_read_file): Correct the value of BLOCKEND diff --git a/boot/i386/pc/boot.S b/boot/i386/pc/boot.S index 570ff76c0..e4e0543c6 100644 --- a/boot/i386/pc/boot.S +++ b/boot/i386/pc/boot.S @@ -1,8 +1,7 @@ /* -*-Asm-*- */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. * * 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/boot/i386/pc/diskboot.S b/boot/i386/pc/diskboot.S index da1e02a17..72c4f028f 100644 --- a/boot/i386/pc/diskboot.S +++ b/boot/i386/pc/diskboot.S @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. * * 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/disk/i386/pc/biosdisk.c b/disk/i386/pc/biosdisk.c index 1856f7bd9..3dc34ba4d 100644 --- a/disk/i386/pc/biosdisk.c +++ b/disk/i386/pc/biosdisk.c @@ -1,8 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * PUPA 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/disk/i386/pc/partition.c b/disk/i386/pc/partition.c index ba0771b4c..171180bda 100644 --- a/disk/i386/pc/partition.c +++ b/disk/i386/pc/partition.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/font/manager.c b/font/manager.c index 77c682285..4b26483ce 100644 --- a/font/manager.c +++ b/font/manager.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/fs/ext2.c b/fs/ext2.c index 62e46ef3d..79794a03a 100644 --- a/fs/ext2.c +++ b/fs/ext2.c @@ -1,8 +1,7 @@ /* ext2.c - Second Extended filesystem */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2004 Free Software Foundation, Inc. - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2003, 2004 Free Software Foundation, Inc. * * 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/fs/fat.c b/fs/fat.c index 723727631..9ee62b514 100644 --- a/fs/fat.c +++ b/fs/fat.c @@ -1,9 +1,7 @@ /* fat.c - FAT filesystem */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2000,2001 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2000,2001,2002,2003 Free Software Foundation, Inc. * * 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/genkernsyms.sh b/genkernsyms.sh index 0177ab3cf..12189355f 100644 --- a/genkernsyms.sh +++ b/genkernsyms.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# Copyright (C) 2002 Yoshinori K. Okuji +# Copyright (C) 2002 Free Software Foundation, Inc. # # This gensymlist.sh is free software; the author # gives unlimited permission to copy and/or distribute it, diff --git a/genmk.rb b/genmk.rb index b3643d68a..709409c07 100644 --- a/genmk.rb +++ b/genmk.rb @@ -1,6 +1,6 @@ #! /usr/bin/ruby -w # -# Copyright (C) 2002,2003 Yoshinori K. Okuji +# Copyright (C) 2002,2003 Free Software Foundation, Inc. # # This genmk.rb is free software; the author # gives unlimited permission to copy and/or distribute it, diff --git a/genmodsrc.sh b/genmodsrc.sh index f02eb139d..5933170a1 100644 --- a/genmodsrc.sh +++ b/genmodsrc.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# Copyright (C) 2002 Yoshinori K. Okuji +# Copyright (C) 2002 Free Software Foundation, Inc. # # This genmodsrc.sh is free software; the author # gives unlimited permission to copy and/or distribute it, diff --git a/gensymlist.sh b/gensymlist.sh index 531ce1c21..003dc22be 100644 --- a/gensymlist.sh +++ b/gensymlist.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# Copyright (C) 2002 Yoshinori K. Okuji +# Copyright (C) 2002 Free Software Foundation, Inc. # # This gensymlist.sh is free software; the author # gives unlimited permission to copy and/or distribute it, diff --git a/include/grub/boot.h b/include/grub/boot.h index bf897dbf2..14eb7be12 100644 --- a/include/grub/boot.h +++ b/include/grub/boot.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/device.h b/include/grub/device.h index e8df53c5c..a0dad3d28 100644 --- a/include/grub/device.h +++ b/include/grub/device.h @@ -1,7 +1,7 @@ /* device.h - device manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/disk.h b/include/grub/disk.h index 51bd5a64c..b7d5839ae 100644 --- a/include/grub/disk.h +++ b/include/grub/disk.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/dl.h b/include/grub/dl.h index b53b44502..8c974ab1d 100644 --- a/include/grub/dl.h +++ b/include/grub/dl.h @@ -1,7 +1,7 @@ /* dl.h - types and prototypes for loadable module support */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/elf.h b/include/grub/elf.h index 832e95042..1ff12c520 100644 --- a/include/grub/elf.h +++ b/include/grub/elf.h @@ -1,6 +1,5 @@ /* This file defines standard ELF types, structures, and macros. Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. - Copyright (C) 2002 Yoshinori K. Okuji This file was part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/grub/err.h b/include/grub/err.h index 40081a7e4..59ab341a1 100644 --- a/include/grub/err.h +++ b/include/grub/err.h @@ -1,8 +1,7 @@ /* err.h - error numbers and prototypes */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/file.h b/include/grub/file.h index 5e3a5e64f..9c876ca4c 100644 --- a/include/grub/file.h +++ b/include/grub/file.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/font.h b/include/grub/font.h index a866ceee2..57719c7ef 100644 --- a/include/grub/font.h +++ b/include/grub/font.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/fs.h b/include/grub/fs.h index bf23b51c3..b4ceed643 100644 --- a/include/grub/fs.h +++ b/include/grub/fs.h @@ -1,8 +1,7 @@ /* fs.h - filesystem manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/i386/pc/biosdisk.h b/include/grub/i386/pc/biosdisk.h index 0260b9654..ba7238e0d 100644 --- a/include/grub/i386/pc/biosdisk.h +++ b/include/grub/i386/pc/biosdisk.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/i386/pc/boot.h b/include/grub/i386/pc/boot.h index 6d08865f6..90a58ec25 100644 --- a/include/grub/i386/pc/boot.h +++ b/include/grub/i386/pc/boot.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999, 2000 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2002 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/console.h b/include/grub/i386/pc/console.h index 8a846b4b0..58f3200f6 100644 --- a/include/grub/i386/pc/console.h +++ b/include/grub/i386/pc/console.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/init.h b/include/grub/i386/pc/init.h index e6396ee0c..703af536e 100644 --- a/include/grub/i386/pc/init.h +++ b/include/grub/i386/pc/init.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/kernel.h b/include/grub/i386/pc/kernel.h index ee63d6f5c..a090e0038 100644 --- a/include/grub/i386/pc/kernel.h +++ b/include/grub/i386/pc/kernel.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/linux.h b/include/grub/i386/pc/linux.h index 3914e0084..c1c028652 100644 --- a/include/grub/i386/pc/linux.h +++ b/include/grub/i386/pc/linux.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002,2004 Free Software Foundation, Inc. - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/loader.h b/include/grub/i386/pc/loader.h index 53c0268d4..c797f56ba 100644 --- a/include/grub/i386/pc/loader.h +++ b/include/grub/i386/pc/loader.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/memory.h b/include/grub/i386/pc/memory.h index d22f8b6cb..a6ae77bc6 100644 --- a/include/grub/i386/pc/memory.h +++ b/include/grub/i386/pc/memory.h @@ -1,7 +1,7 @@ /* memory.h - describe the memory map */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/multiboot.h b/include/grub/i386/pc/multiboot.h index ec5805bd7..1ee2759ac 100644 --- a/include/grub/i386/pc/multiboot.h +++ b/include/grub/i386/pc/multiboot.h @@ -1,7 +1,7 @@ /* multiboot.h - multiboot header file. */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/partition.h b/include/grub/i386/pc/partition.h index 10113a438..ab9a3b769 100644 --- a/include/grub/i386/pc/partition.h +++ b/include/grub/i386/pc/partition.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/i386/pc/time.h b/include/grub/i386/pc/time.h index 435a49f17..834df0d59 100644 --- a/include/grub/i386/pc/time.h +++ b/include/grub/i386/pc/time.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/i386/pc/util/biosdisk.h b/include/grub/i386/pc/util/biosdisk.h index 10d20ff23..2f8dc8941 100644 --- a/include/grub/i386/pc/util/biosdisk.h +++ b/include/grub/i386/pc/util/biosdisk.h @@ -1,7 +1,7 @@ /* biosdisk.h - emulate biosdisk */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/i386/pc/vga.h b/include/grub/i386/pc/vga.h index 013e377b3..fde0472a7 100644 --- a/include/grub/i386/pc/vga.h +++ b/include/grub/i386/pc/vga.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/i386/setjmp.h b/include/grub/i386/setjmp.h index f6627c1b9..1f25b19f0 100644 --- a/include/grub/i386/setjmp.h +++ b/include/grub/i386/setjmp.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/i386/types.h b/include/grub/i386/types.h index bc49cd6de..b2c5705b1 100644 --- a/include/grub/i386/types.h +++ b/include/grub/i386/types.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/kernel.h b/include/grub/kernel.h index 2e48c9c69..24d89fbcb 100644 --- a/include/grub/kernel.h +++ b/include/grub/kernel.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/loader.h b/include/grub/loader.h index bb3a57085..8d537bbb9 100644 --- a/include/grub/loader.h +++ b/include/grub/loader.h @@ -1,8 +1,7 @@ /* loader.h - OS loaders */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * 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/include/grub/misc.h b/include/grub/misc.h index 25673aa83..bd2feb53c 100644 --- a/include/grub/misc.h +++ b/include/grub/misc.h @@ -1,8 +1,7 @@ /* misc.h - prototypes for misc functions */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/mm.h b/include/grub/mm.h index 2033574dc..9bb0acf78 100644 --- a/include/grub/mm.h +++ b/include/grub/mm.h @@ -1,7 +1,7 @@ /* mm.h - prototypes and declarations for memory manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/net.h b/include/grub/net.h index e7cbcb6d2..85d4d8725 100644 --- a/include/grub/net.h +++ b/include/grub/net.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/include/grub/normal.h b/include/grub/normal.h index 022a7a847..9a14f5c78 100644 --- a/include/grub/normal.h +++ b/include/grub/normal.h @@ -1,8 +1,7 @@ /* normal.h - prototypes for the normal mode */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002,2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * 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/include/grub/rescue.h b/include/grub/rescue.h index bf102678f..af1c6df82 100644 --- a/include/grub/rescue.h +++ b/include/grub/rescue.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/setjmp.h b/include/grub/setjmp.h index cf50b748d..5efd62cb9 100644 --- a/include/grub/setjmp.h +++ b/include/grub/setjmp.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/include/grub/symbol.h b/include/grub/symbol.h index d3a4cbc4e..3c4378e49 100644 --- a/include/grub/symbol.h +++ b/include/grub/symbol.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji * * PUPA 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/include/grub/term.h b/include/grub/term.h index 3e6685b21..b0f9e6ce2 100644 --- a/include/grub/term.h +++ b/include/grub/term.h @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Free Software Foundation, Inc. - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/types.h b/include/grub/types.h index f44618a76..a9861ceb9 100644 --- a/include/grub/types.h +++ b/include/grub/types.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/include/grub/util/getroot.h b/include/grub/util/getroot.h index c71ce9604..74ca437a5 100644 --- a/include/grub/util/getroot.h +++ b/include/grub/util/getroot.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/util/misc.h b/include/grub/util/misc.h index 03c01a4c2..eef840a7b 100644 --- a/include/grub/util/misc.h +++ b/include/grub/util/misc.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/include/grub/util/resolve.h b/include/grub/util/resolve.h index 35d2507d9..b4b7e1e07 100644 --- a/include/grub/util/resolve.h +++ b/include/grub/util/resolve.h @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/device.c b/kern/device.c index 2c37d936b..9a04c0b72 100644 --- a/kern/device.c +++ b/kern/device.c @@ -1,7 +1,7 @@ /* device.c - device manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/disk.c b/kern/disk.c index 0373e58aa..f7520b03d 100644 --- a/kern/disk.c +++ b/kern/disk.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/kern/dl.c b/kern/dl.c index 21b702d97..1a05968b9 100644 --- a/kern/dl.c +++ b/kern/dl.c @@ -1,7 +1,7 @@ /* dl.c - loadable module support */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/err.c b/kern/err.c index 7e2d103e4..5f724d2bc 100644 --- a/kern/err.c +++ b/kern/err.c @@ -1,7 +1,7 @@ /* err.c - error handling routines */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/file.c b/kern/file.c index 7d95ba595..dbd4f058e 100644 --- a/kern/file.c +++ b/kern/file.c @@ -1,7 +1,7 @@ /* file.c - file I/O functions */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/fs.c b/kern/fs.c index 652fc55b9..4de85b4eb 100644 --- a/kern/fs.c +++ b/kern/fs.c @@ -1,7 +1,7 @@ /* fs.c - filesystem manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/i386/dl.c b/kern/i386/dl.c index bdd6dd962..abc125e52 100644 --- a/kern/i386/dl.c +++ b/kern/i386/dl.c @@ -1,7 +1,7 @@ /* dl-386.c - arch-dependent part of loadable module support */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/i386/pc/init.c b/kern/i386/pc/init.c index 57c6d3d75..020f68506 100644 --- a/kern/i386/pc/init.c +++ b/kern/i386/pc/init.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/kern/i386/pc/lzo1x.S b/kern/i386/pc/lzo1x.S index 616d146a5..567a100a6 100644 --- a/kern/i386/pc/lzo1x.S +++ b/kern/i386/pc/lzo1x.S @@ -1,7 +1,7 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB * Copyright (C) 1996-2002 Markus Franz Xaver Johannes Oberhumer - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/kern/i386/pc/startup.S b/kern/i386/pc/startup.S index ff60fe6b5..903caf273 100644 --- a/kern/i386/pc/startup.S +++ b/kern/i386/pc/startup.S @@ -1,9 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002,2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * 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/kern/loader.c b/kern/loader.c index b34118b68..1e24d2fa3 100644 --- a/kern/loader.c +++ b/kern/loader.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/kern/main.c b/kern/main.c index ac0e9376e..4c6b9066b 100644 --- a/kern/main.c +++ b/kern/main.c @@ -1,7 +1,7 @@ /* main.c - the kernel main routine */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/kern/misc.c b/kern/misc.c index 09595bd05..1c5513fd9 100644 --- a/kern/misc.c +++ b/kern/misc.c @@ -1,9 +1,7 @@ /* misc.c - definitions of misc functions */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * PUPA 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/kern/mm.c b/kern/mm.c index ce88f9a89..2117e147f 100644 --- a/kern/mm.c +++ b/kern/mm.c @@ -1,7 +1,7 @@ /* mm.c - functions for memory manager */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/kern/rescue.c b/kern/rescue.c index 23e596c22..1a2897f90 100644 --- a/kern/rescue.c +++ b/kern/rescue.c @@ -1,7 +1,7 @@ /* rescue.c - rescue mode */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/kern/term.c b/kern/term.c index 1e3dbb15e..a551444cb 100644 --- a/kern/term.c +++ b/kern/term.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Free Software Foundation, Inc. - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/loader/i386/pc/chainloader.c b/loader/i386/pc/chainloader.c index b0d417da2..c96e29dd4 100644 --- a/loader/i386/pc/chainloader.c +++ b/loader/i386/pc/chainloader.c @@ -1,7 +1,7 @@ /* chainloader.c - boot another boot loader */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/loader/i386/pc/linux.c b/loader/i386/pc/linux.c index 6cd022723..5a57eda5e 100644 --- a/loader/i386/pc/linux.c +++ b/loader/i386/pc/linux.c @@ -1,8 +1,7 @@ /* linux.c - boot Linux zImage or bzImage */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002,2004 Free Software Foundation, Inc. - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc. * * 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/loader/i386/pc/multiboot.c b/loader/i386/pc/multiboot.c index 390c0cfa1..a9d9714d5 100644 --- a/loader/i386/pc/multiboot.c +++ b/loader/i386/pc/multiboot.c @@ -1,7 +1,7 @@ /* multiboot.c - boot a multiboot OS image. */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Jeroen Dekkers + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/normal/cmdline.c b/normal/cmdline.c index 5f0ffd9c0..17990a833 100644 --- a/normal/cmdline.c +++ b/normal/cmdline.c @@ -1,8 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * 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/normal/command.c b/normal/command.c index 8bef9d0dc..800073a60 100644 --- a/normal/command.c +++ b/normal/command.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/normal/i386/setjmp.S b/normal/i386/setjmp.S index 0273b0f9e..6d0ebabdd 100644 --- a/normal/i386/setjmp.S +++ b/normal/i386/setjmp.S @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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 @@ -54,4 +54,4 @@ FUNCTION(pupa_longjmp) jnz 1f incl %eax 1: jmp *%ecx - \ No newline at end of file + diff --git a/normal/main.c b/normal/main.c index 8753fd7e7..2a0b08bc0 100644 --- a/normal/main.c +++ b/normal/main.c @@ -1,9 +1,7 @@ /* main.c - the normal mode main routine */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002,2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards . + * Copyright (C) 2000,2001,2002,2003 Free Software Foundation, Inc. * * 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/normal/menu.c b/normal/menu.c index 930db0475..09b2725df 100644 --- a/normal/menu.c +++ b/normal/menu.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/term/i386/pc/console.c b/term/i386/pc/console.c index 04cd7b083..9746c29e2 100644 --- a/term/i386/pc/console.c +++ b/term/i386/pc/console.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Free Software Foundation, Inc. - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * 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/term/i386/pc/vga.c b/term/i386/pc/vga.c index ef9b66525..6666c9512 100644 --- a/term/i386/pc/vga.c +++ b/term/i386/pc/vga.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2003 Yoshinori K. Okuji + * Copyright (C) 2000,2001,2002,2003 Free Software Foundation, Inc. * * 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 @@ -510,7 +509,7 @@ pupa_vga_putchar (pupa_uint32_t c) static int debug_command (int argc, char *argv[]) { - pupa_printf ("こんにちは\n"); + pupa_printf ("?????????n"); return 0; } diff --git a/util/console.c b/util/console.c index d391598ed..b75238faa 100644 --- a/util/console.c +++ b/util/console.c @@ -1,7 +1,7 @@ /* console.c -- Ncurses console for PUPA. */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2003 Free Software Foundation, Inc. * * 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/util/genmoddep.c b/util/genmoddep.c index 20da7a532..38ed27b91 100644 --- a/util/genmoddep.c +++ b/util/genmoddep.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * 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/util/grub-emu.c b/util/grub-emu.c index 0aaa23624..19cdbc0b0 100644 --- a/util/grub-emu.c +++ b/util/grub-emu.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2003 Free Software Foundation, Inc. * * PUPA 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/util/i386/pc/biosdisk.c b/util/i386/pc/biosdisk.c index c0c0f4e79..1b33039d1 100644 --- a/util/i386/pc/biosdisk.c +++ b/util/i386/pc/biosdisk.c @@ -1,9 +1,7 @@ /* biosdisk.c - emulate biosdisk */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * PUPA 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/util/i386/pc/getroot.c b/util/i386/pc/getroot.c index 2db3883ba..9e67a6db7 100644 --- a/util/i386/pc/getroot.c +++ b/util/i386/pc/getroot.c @@ -1,9 +1,7 @@ /* getroot.c - Get root device */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * PUPA 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/util/i386/pc/grub-mkimage.c b/util/i386/pc/grub-mkimage.c index ea850dc4e..d38c5fcad 100644 --- a/util/i386/pc/grub-mkimage.c +++ b/util/i386/pc/grub-mkimage.c @@ -1,7 +1,7 @@ /* pupa-mkimage.c - make a bootable image */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002,2003 Yoshinori K. Okuji + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/util/i386/pc/grub-setup.c b/util/i386/pc/grub-setup.c index 31d855d1f..de8202579 100644 --- a/util/i386/pc/grub-setup.c +++ b/util/i386/pc/grub-setup.c @@ -1,9 +1,7 @@ /* pupa-setup.c - make PUPA usable */ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc. - * Copyright (C) 2002 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. * * PUPA 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/util/misc.c b/util/misc.c index 581f07692..798994dca 100644 --- a/util/misc.c +++ b/util/misc.c @@ -1,7 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002,2003 Yoshinori K. Okuji - * Copyright (C) 2003 Marco Gerards + * Copyright (C) 2002,2003 Free Software Foundation, Inc. * * PUPA 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/util/resolve.c b/util/resolve.c index 9f9390416..7e079ed2c 100644 --- a/util/resolve.c +++ b/util/resolve.c @@ -1,6 +1,6 @@ /* * PUPA -- Preliminary Universal Programming Architecture for GRUB - * Copyright (C) 2002 Yoshinori K. Okuji + * Copyright (C) 2002 Free Software Foundation, Inc. * * PUPA 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/util/unifont2pff.rb b/util/unifont2pff.rb index c2013cb07..b3b1b1b55 100644 --- a/util/unifont2pff.rb +++ b/util/unifont2pff.rb @@ -1,6 +1,6 @@ #! /usr/bin/ruby -w # -# Copyright (C) 2003 Yoshinori K. Okuji +# Copyright (C) 2003 Free Software Foundation, Inc. # # This unifont2pff.rb is free software; the author # gives unlimited permission to copy and/or distribute it,