summaryrefslogtreecommitdiff
path: root/futility
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2022-10-03 17:25:37 +0200
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-10-04 12:50:35 +0000
commit6a33a0fca3e4f5cd9c3b3fd4ac0b5b8c7ffc018e (patch)
tree73e135175a7995c87cc26b9671566de253d51bc2 /futility
parentb2b4f76743abc7e6fd4e3f60782b40435ab4a63b (diff)
downloadvboot-6a33a0fca3e4f5cd9c3b3fd4ac0b5b8c7ffc018e.tar.gz
treewide: Fix license headers to conform with linter
BRANCH=none BUG=none TEST=cros lint Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Change-Id: I7710c43c8c70cf257a898f22c42ecbf350e125a2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/3925702 Commit-Queue: Jakub Czapiga <czapiga@google.com> Reviewed-by: Yu-Ping Wu <yupingso@chromium.org> Tested-by: Jakub Czapiga <czapiga@google.com>
Diffstat (limited to 'futility')
-rw-r--r--futility/cmd_create.c2
-rw-r--r--futility/cmd_dump_fmap.c2
-rw-r--r--futility/cmd_dump_kernel_config.c3
-rw-r--r--futility/cmd_gbb_utility.c2
-rw-r--r--futility/cmd_gscvd.c3
-rw-r--r--futility/cmd_load_fmap.c2
-rw-r--r--futility/cmd_pcr.c2
-rw-r--r--futility/cmd_show.c2
-rw-r--r--futility/cmd_sign.c2
-rw-r--r--futility/cmd_update.c2
-rw-r--r--futility/cmd_validate_rec_mrc.c2
-rw-r--r--futility/cmd_vbutil_firmware.c2
-rw-r--r--futility/cmd_vbutil_kernel.c2
-rw-r--r--futility/cmd_vbutil_key.c2
-rw-r--r--futility/cmd_vbutil_keyblock.c2
-rw-r--r--futility/dump_kernel_config_lib.c2
-rw-r--r--futility/file_type.c2
-rw-r--r--futility/file_type.h2
-rw-r--r--futility/file_type_bios.c2
-rw-r--r--futility/file_type_bios.h2
-rw-r--r--futility/file_type_rwsig.c2
-rw-r--r--futility/file_type_usbpd1.c2
-rw-r--r--futility/futility.c2
-rw-r--r--futility/futility.h2
-rw-r--r--futility/futility_options.h2
-rw-r--r--futility/kernel_blob.h2
-rw-r--r--futility/misc.c2
-rw-r--r--futility/updater.c2
-rw-r--r--futility/updater.h2
-rw-r--r--futility/updater_archive.c2
-rw-r--r--futility/updater_manifest.c2
-rw-r--r--futility/updater_quirks.c2
-rw-r--r--futility/updater_utils.c2
-rw-r--r--futility/updater_utils.h2
-rw-r--r--futility/vb1_helper.h2
-rw-r--r--futility/vb2_helper.c2
36 files changed, 36 insertions, 38 deletions
diff --git a/futility/cmd_create.c b/futility/cmd_create.c
index cf02f097..1ef35c86 100644
--- a/futility/cmd_create.c
+++ b/futility/cmd_create.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_dump_fmap.c b/futility/cmd_dump_fmap.c
index 3a0e14ed..1e5c29c0 100644
--- a/futility/cmd_dump_fmap.c
+++ b/futility/cmd_dump_fmap.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_dump_kernel_config.c b/futility/cmd_dump_kernel_config.c
index a46a19d1..5dd23a58 100644
--- a/futility/cmd_dump_kernel_config.c
+++ b/futility/cmd_dump_kernel_config.c
@@ -1,4 +1,4 @@
-/* Copyright 2012 The Chromium OS Authors. All rights reserved.
+/* Copyright 2012 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
@@ -95,4 +95,3 @@ static int do_dump_kern_cfg(int argc, char *argv[])
DECLARE_FUTIL_COMMAND(dump_kernel_config, do_dump_kern_cfg, VBOOT_VERSION_ALL,
"Prints the kernel command line");
-
diff --git a/futility/cmd_gbb_utility.c b/futility/cmd_gbb_utility.c
index 8f21eee9..0f6bebb3 100644
--- a/futility/cmd_gbb_utility.c
+++ b/futility/cmd_gbb_utility.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_gscvd.c b/futility/cmd_gscvd.c
index 38f8ce3a..f5c96b4e 100644
--- a/futility/cmd_gscvd.c
+++ b/futility/cmd_gscvd.c
@@ -1,5 +1,4 @@
-/*
- * Copyright 2021 The ChromiumOS Authors
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_load_fmap.c b/futility/cmd_load_fmap.c
index 4ab194e1..474ff56e 100644
--- a/futility/cmd_load_fmap.c
+++ b/futility/cmd_load_fmap.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_pcr.c b/futility/cmd_pcr.c
index bc6de62c..ba86321e 100644
--- a/futility/cmd_pcr.c
+++ b/futility/cmd_pcr.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_show.c b/futility/cmd_show.c
index 9816106a..6ed15435 100644
--- a/futility/cmd_show.c
+++ b/futility/cmd_show.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_sign.c b/futility/cmd_sign.c
index 2f9a0179..8ffd7034 100644
--- a/futility/cmd_sign.c
+++ b/futility/cmd_sign.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_update.c b/futility/cmd_update.c
index a77b2246..b16a2b74 100644
--- a/futility/cmd_update.c
+++ b/futility/cmd_update.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/cmd_validate_rec_mrc.c b/futility/cmd_validate_rec_mrc.c
index 7ba59317..16760d50 100644
--- a/futility/cmd_validate_rec_mrc.c
+++ b/futility/cmd_validate_rec_mrc.c
@@ -1,4 +1,4 @@
-/* Copyright 2016 The Chromium OS Authors. All rights reserved.
+/* Copyright 2016 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/cmd_vbutil_firmware.c b/futility/cmd_vbutil_firmware.c
index b7155f7b..f31413c4 100644
--- a/futility/cmd_vbutil_firmware.c
+++ b/futility/cmd_vbutil_firmware.c
@@ -1,4 +1,4 @@
-/* Copyright 2011 The Chromium OS Authors. All rights reserved.
+/* Copyright 2011 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/cmd_vbutil_kernel.c b/futility/cmd_vbutil_kernel.c
index 7268bee2..e0397cf5 100644
--- a/futility/cmd_vbutil_kernel.c
+++ b/futility/cmd_vbutil_kernel.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/cmd_vbutil_key.c b/futility/cmd_vbutil_key.c
index d26df3ff..eeda603b 100644
--- a/futility/cmd_vbutil_key.c
+++ b/futility/cmd_vbutil_key.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
+/* Copyright 2011 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/cmd_vbutil_keyblock.c b/futility/cmd_vbutil_keyblock.c
index 28a3ccd8..197c0337 100644
--- a/futility/cmd_vbutil_keyblock.c
+++ b/futility/cmd_vbutil_keyblock.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
+/* Copyright 2011 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/dump_kernel_config_lib.c b/futility/dump_kernel_config_lib.c
index ff39c412..8bc8cefc 100644
--- a/futility/dump_kernel_config_lib.c
+++ b/futility/dump_kernel_config_lib.c
@@ -1,4 +1,4 @@
-/* Copyright 2012 The Chromium OS Authors. All rights reserved.
+/* Copyright 2012 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/file_type.c b/futility/file_type.c
index 29c4667e..aad3c9d1 100644
--- a/futility/file_type.c
+++ b/futility/file_type.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/file_type.h b/futility/file_type.h
index 5a074b3e..bff6904d 100644
--- a/futility/file_type.h
+++ b/futility/file_type.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/file_type_bios.c b/futility/file_type_bios.c
index 29ecfd4e..ab20adb0 100644
--- a/futility/file_type_bios.c
+++ b/futility/file_type_bios.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/file_type_bios.h b/futility/file_type_bios.h
index 8aa2d633..469e3fd0 100644
--- a/futility/file_type_bios.h
+++ b/futility/file_type_bios.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/file_type_rwsig.c b/futility/file_type_rwsig.c
index b595e250..86e9bf29 100644
--- a/futility/file_type_rwsig.c
+++ b/futility/file_type_rwsig.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/file_type_usbpd1.c b/futility/file_type_usbpd1.c
index 024303d8..dca5d6ae 100644
--- a/futility/file_type_usbpd1.c
+++ b/futility/file_type_usbpd1.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/futility.c b/futility/futility.c
index 75cef671..405d043a 100644
--- a/futility/futility.c
+++ b/futility/futility.c
@@ -1,4 +1,4 @@
-/* Copyright 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/futility.h b/futility/futility.h
index fa4d3de2..18063d97 100644
--- a/futility/futility.h
+++ b/futility/futility.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/futility_options.h b/futility/futility_options.h
index 32f240a5..956b49f1 100644
--- a/futility/futility_options.h
+++ b/futility/futility_options.h
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/kernel_blob.h b/futility/kernel_blob.h
index 9043bac4..f6b04bb9 100644
--- a/futility/kernel_blob.h
+++ b/futility/kernel_blob.h
@@ -1,4 +1,4 @@
-/* Copyright 2010 The Chromium OS Authors. All rights reserved.
+/* Copyright 2010 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/misc.c b/futility/misc.c
index 7d261c2c..8366bc92 100644
--- a/futility/misc.c
+++ b/futility/misc.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/updater.c b/futility/updater.c
index 6be7238c..66529fea 100644
--- a/futility/updater.c
+++ b/futility/updater.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater.h b/futility/updater.h
index cf034654..9cc373df 100644
--- a/futility/updater.h
+++ b/futility/updater.h
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater_archive.c b/futility/updater_archive.c
index c6e8f289..4f472e07 100644
--- a/futility/updater_archive.c
+++ b/futility/updater_archive.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater_manifest.c b/futility/updater_manifest.c
index 0760cb99..2d0cac7f 100644
--- a/futility/updater_manifest.c
+++ b/futility/updater_manifest.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The Chromium OS Authors. All rights reserved.
+/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater_quirks.c b/futility/updater_quirks.c
index 73b7c2fd..73b3b897 100644
--- a/futility/updater_quirks.c
+++ b/futility/updater_quirks.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater_utils.c b/futility/updater_utils.c
index 8a7b6f7b..8a942a2c 100644
--- a/futility/updater_utils.c
+++ b/futility/updater_utils.c
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/updater_utils.h b/futility/updater_utils.h
index 49b0adf5..43e23a1e 100644
--- a/futility/updater_utils.h
+++ b/futility/updater_utils.h
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/futility/vb1_helper.h b/futility/vb1_helper.h
index 0699998e..ae2e5275 100644
--- a/futility/vb1_helper.h
+++ b/futility/vb1_helper.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/futility/vb2_helper.c b/futility/vb2_helper.c
index 2105fe53..9e875b98 100644
--- a/futility/vb2_helper.c
+++ b/futility/vb2_helper.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/