From edd36fa49a1e5693b550d3056944718b519b6ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 12 Mar 2026 18:37:35 +0400 Subject: [PATCH] ui/vgafont: add SPDX license header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The vgafont was added without source origin, but it can be traced back to Linux kernel, which used GPL-2 (https://github.com/mpe/linux-fullhistory/blob/master/lib/fonts/font_8x16.c). commit c6f37d0e4feeb264a699eda289d3cc69405100b0 Author: Fabrice Bellard Date: Wed Jul 14 17:39:50 2004 +0000 virtual console Reviewed-by: Daniel P. Berrangé Signed-off-by: Marc-André Lureau --- ui/vgafont.c | 3 +++ ui/vgafont.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/ui/vgafont.c b/ui/vgafont.c index 708c845a6b..b9b9a7016f 100644 --- a/ui/vgafont.c +++ b/ui/vgafont.c @@ -1,3 +1,6 @@ +/* + * SPDX-License-Identifier: GPL-2.0-or-later + */ #include "vgafont.h" const uint8_t vgafont16[256 * 16] = { diff --git a/ui/vgafont.h b/ui/vgafont.h index 4498ac4e07..54aeeb7d19 100644 --- a/ui/vgafont.h +++ b/ui/vgafont.h @@ -1,3 +1,6 @@ +/* + * SPDX-License-Identifier: GPL-2.0-or-later + */ #ifndef VGAFONT_H #define VGAFONT_H