Gerd Hoffmann (3): add copyright and license to bochsdisplay.c add copyright and license to ramfb.c add license to cp437.c
src/cp437.c | 2 ++ vgasrc/bochsdisplay.c | 6 ++++++ vgasrc/ramfb.c | 6 ++++++ 3 files changed, 14 insertions(+)
Signed-off-by: Gerd Hoffmann kraxel@redhat.com --- vgasrc/bochsdisplay.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/vgasrc/bochsdisplay.c b/vgasrc/bochsdisplay.c index 61689d6eb93c..d7ff3e9f82dc 100644 --- a/vgasrc/bochsdisplay.c +++ b/vgasrc/bochsdisplay.c @@ -1,3 +1,9 @@ +// Simple framebuffer vgabios for use with qemu bochs-display device +// +// Copyright (C) 2019 Gerd Hoffmann kraxel@redhat.com +// +// This file may be distributed under the terms of the GNU LGPLv3 license. + #include "biosvar.h" // GET_BDA #include "output.h" // dprintf #include "string.h" // memset16_far
Signed-off-by: Gerd Hoffmann kraxel@redhat.com --- vgasrc/ramfb.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/vgasrc/ramfb.c b/vgasrc/ramfb.c index 8f8e2ef3313a..7efb11fbebcd 100644 --- a/vgasrc/ramfb.c +++ b/vgasrc/ramfb.c @@ -1,3 +1,9 @@ +// Simple framebuffer vgabios for use with qemu ramfb device +// +// Copyright (C) 2019 Gerd Hoffmann kraxel@redhat.com +// +// This file may be distributed under the terms of the GNU LGPLv3 license. + #include "biosvar.h" // GET_BDA #include "output.h" // dprintf #include "string.h" // memset16_far
Signed-off-by: Gerd Hoffmann kraxel@redhat.com --- src/cp437.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/cp437.c b/src/cp437.c index 7305e2073763..719872f57c4f 100644 --- a/src/cp437.c +++ b/src/cp437.c @@ -1,5 +1,7 @@ /* * code page 437 to unicode map + * + * This file may be distributed under the terms of the GNU LGPLv3 license. */
#include "types.h"
On 10/23/19 7:50 AM, Gerd Hoffmann wrote:
Gerd Hoffmann (3): add copyright and license to bochsdisplay.c add copyright and license to ramfb.c add license to cp437.c
src/cp437.c | 2 ++ vgasrc/bochsdisplay.c | 6 ++++++ vgasrc/ramfb.c | 6 ++++++ 3 files changed, 14 insertions(+)
FWIW =) Reviewed-by: Philippe Mathieu-Daudé philmd@redhat.com
On Wed, Oct 23, 2019 at 07:50:36AM +0200, Gerd Hoffmann wrote:
Gerd Hoffmann (3): add copyright and license to bochsdisplay.c add copyright and license to ramfb.c add license to cp437.c
Thanks. I committed these patches.
-Kevin