git: 971696b22f7a - main - mkimg: Add SPDX-License-Identifier tags

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Thu, 19 Feb 2026 13:15:27 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=971696b22f7acc8c45600bb56b972340e9b912e8

commit 971696b22f7acc8c45600bb56b972340e9b912e8
Author:     Tuukka Pasanen <tuukka.pasanen@ilmi.fi>
AuthorDate: 2026-02-09 08:32:54 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-02-19 13:15:00 +0000

    mkimg: Add SPDX-License-Identifier tags
    
    Reviewed by: emaste
    Sponsored by: The FreeBSD Foundation
---
 usr.bin/mkimg/apm.c    | 2 ++
 usr.bin/mkimg/bsd.c    | 2 ++
 usr.bin/mkimg/ebr.c    | 2 ++
 usr.bin/mkimg/endian.h | 2 ++
 usr.bin/mkimg/format.c | 2 ++
 usr.bin/mkimg/format.h | 2 ++
 usr.bin/mkimg/gpt.c    | 2 ++
 usr.bin/mkimg/image.c  | 2 ++
 usr.bin/mkimg/image.h  | 2 ++
 usr.bin/mkimg/mbr.c    | 2 ++
 usr.bin/mkimg/mkimg.c  | 2 ++
 usr.bin/mkimg/mkimg.h  | 2 ++
 usr.bin/mkimg/qcow.c   | 2 ++
 usr.bin/mkimg/raw.c    | 2 ++
 usr.bin/mkimg/scheme.c | 2 ++
 usr.bin/mkimg/scheme.h | 2 ++
 usr.bin/mkimg/uuid.c   | 2 ++
 usr.bin/mkimg/vhd.c    | 2 ++
 usr.bin/mkimg/vhdx.c   | 2 ++
 usr.bin/mkimg/vmdk.c   | 2 ++
 20 files changed, 40 insertions(+)

diff --git a/usr.bin/mkimg/apm.c b/usr.bin/mkimg/apm.c
index 259a7533c27c..59776d18bc47 100644
--- a/usr.bin/mkimg/apm.c
+++ b/usr.bin/mkimg/apm.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/bsd.c b/usr.bin/mkimg/bsd.c
index 17933c01ac07..647e9ab0608c 100644
--- a/usr.bin/mkimg/bsd.c
+++ b/usr.bin/mkimg/bsd.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/ebr.c b/usr.bin/mkimg/ebr.c
index 4d6adbb3b8ba..20ade1ed88d1 100644
--- a/usr.bin/mkimg/ebr.c
+++ b/usr.bin/mkimg/ebr.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/endian.h b/usr.bin/mkimg/endian.h
index e9dc2b44b9b7..98e699bee855 100644
--- a/usr.bin/mkimg/endian.h
+++ b/usr.bin/mkimg/endian.h
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2002 Thomas Moestl <tmm@FreeBSD.org>
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/format.c b/usr.bin/mkimg/format.c
index 6730c22ca153..97e580cd8ca2 100644
--- a/usr.bin/mkimg/format.c
+++ b/usr.bin/mkimg/format.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/format.h b/usr.bin/mkimg/format.h
index 304af4586da8..db1ea764ced2 100644
--- a/usr.bin/mkimg/format.h
+++ b/usr.bin/mkimg/format.h
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/gpt.c b/usr.bin/mkimg/gpt.c
index ed3f008c394f..ce817ea10ed2 100644
--- a/usr.bin/mkimg/gpt.c
+++ b/usr.bin/mkimg/gpt.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/image.c b/usr.bin/mkimg/image.c
index 07aaf1a6c0ea..90817206e317 100644
--- a/usr.bin/mkimg/image.c
+++ b/usr.bin/mkimg/image.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/image.h b/usr.bin/mkimg/image.h
index 53dd3dc2df8a..956fe3f27556 100644
--- a/usr.bin/mkimg/image.h
+++ b/usr.bin/mkimg/image.h
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/mbr.c b/usr.bin/mkimg/mbr.c
index 7bda01c72e6a..cc5bd51bd7e5 100644
--- a/usr.bin/mkimg/mbr.c
+++ b/usr.bin/mkimg/mbr.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/mkimg.c b/usr.bin/mkimg/mkimg.c
index 8f3a5d879bbb..c625b49dc29a 100644
--- a/usr.bin/mkimg/mkimg.c
+++ b/usr.bin/mkimg/mkimg.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2013,2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/mkimg.h b/usr.bin/mkimg/mkimg.h
index aa0ec2a8d944..13ca7aab36fb 100644
--- a/usr.bin/mkimg/mkimg.h
+++ b/usr.bin/mkimg/mkimg.h
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/qcow.c b/usr.bin/mkimg/qcow.c
index 2dc3e5498420..6e67cbaa0887 100644
--- a/usr.bin/mkimg/qcow.c
+++ b/usr.bin/mkimg/qcow.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Marcel Moolenaar
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/raw.c b/usr.bin/mkimg/raw.c
index 2de674b908ac..b68c5f06b3c4 100644
--- a/usr.bin/mkimg/raw.c
+++ b/usr.bin/mkimg/raw.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/scheme.c b/usr.bin/mkimg/scheme.c
index 85ed94013e8d..80ff456a709f 100644
--- a/usr.bin/mkimg/scheme.c
+++ b/usr.bin/mkimg/scheme.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2013,2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/scheme.h b/usr.bin/mkimg/scheme.h
index 52614255595f..1c234b86d66c 100644
--- a/usr.bin/mkimg/scheme.h
+++ b/usr.bin/mkimg/scheme.h
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2013,2014 Juniper Networks, Inc.
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/uuid.c b/usr.bin/mkimg/uuid.c
index 885a6c36b522..da99c33109e3 100644
--- a/usr.bin/mkimg/uuid.c
+++ b/usr.bin/mkimg/uuid.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2016 Marcel Moolenaar
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/vhd.c b/usr.bin/mkimg/vhd.c
index c0fe45ab416e..09d3cfab4dcc 100644
--- a/usr.bin/mkimg/vhd.c
+++ b/usr.bin/mkimg/vhd.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014, 2015 Marcel Moolenaar
  * All rights reserved.
  *
diff --git a/usr.bin/mkimg/vhdx.c b/usr.bin/mkimg/vhdx.c
index e280250bd964..6ecdfe8e13e9 100644
--- a/usr.bin/mkimg/vhdx.c
+++ b/usr.bin/mkimg/vhdx.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2020 Oleksandr Tymoshenko <gonzo@FreeBSD.org>
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/usr.bin/mkimg/vmdk.c b/usr.bin/mkimg/vmdk.c
index 132eb801387a..79ef256df223 100644
--- a/usr.bin/mkimg/vmdk.c
+++ b/usr.bin/mkimg/vmdk.c
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
  * Copyright (c) 2014 Juniper Networks, Inc.
  * All rights reserved.
  *