summaryrefslogtreecommitdiff
path: root/host
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 /host
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 'host')
-rw-r--r--host/arch/arm/lib/crossystem_arch.c2
-rw-r--r--host/arch/mips/lib/crossystem_arch.c2
-rw-r--r--host/arch/stub/lib/crossystem_arch.c2
-rw-r--r--host/arch/x86/lib/crossystem_arch.c2
-rw-r--r--host/include/cgpt_params.h2
-rw-r--r--host/include/crossystem.h2
-rw-r--r--host/include/crossystem_vbnv.h2
-rw-r--r--host/include/openssl_compat.h2
-rw-r--r--host/include/vboot_host.h2
-rw-r--r--host/lib/cbfstool.c2
-rw-r--r--host/lib/chromeos_config.c2
-rw-r--r--host/lib/crossystem.c2
-rw-r--r--host/lib/crypto.c2
-rw-r--r--host/lib/extract_vmlinuz.c2
-rw-r--r--host/lib/file_keys.c2
-rw-r--r--host/lib/flashrom.c2
-rw-r--r--host/lib/flashrom_drv.c2
-rw-r--r--host/lib/fmap.c2
-rw-r--r--host/lib/host_common.c2
-rw-r--r--host/lib/host_key2.c2
-rw-r--r--host/lib/host_keyblock.c2
-rw-r--r--host/lib/host_misc.c2
-rw-r--r--host/lib/host_signature.c2
-rw-r--r--host/lib/host_signature2.c2
-rw-r--r--host/lib/include/cbfstool.h2
-rw-r--r--host/lib/include/chromeos_config.h2
-rw-r--r--host/lib/include/crossystem_arch.h2
-rw-r--r--host/lib/include/file_keys.h2
-rw-r--r--host/lib/include/flashrom.h2
-rw-r--r--host/lib/include/fmap.h2
-rw-r--r--host/lib/include/gsc_ro.h3
-rw-r--r--host/lib/include/host_common.h2
-rw-r--r--host/lib/include/host_key.h2
-rw-r--r--host/lib/include/host_keyblock.h2
-rw-r--r--host/lib/include/host_misc.h2
-rw-r--r--host/lib/include/host_signature.h2
-rw-r--r--host/lib/include/signature_digest.h2
-rw-r--r--host/lib/include/subprocess.h2
-rw-r--r--host/lib/include/util_misc.h2
-rw-r--r--host/lib/signature_digest.c2
-rw-r--r--host/lib/subprocess.c2
-rw-r--r--host/lib/util_misc.c2
-rw-r--r--host/lib21/host_common.c2
-rw-r--r--host/lib21/host_key.c2
-rw-r--r--host/lib21/host_misc.c2
-rw-r--r--host/lib21/host_signature.c2
-rw-r--r--host/lib21/include/host_common21.h2
-rw-r--r--host/lib21/include/host_key21.h2
-rw-r--r--host/lib21/include/host_misc21.h2
-rw-r--r--host/lib21/include/host_signature21.h2
-rw-r--r--host/lib21/include/host_struct21.h2
51 files changed, 51 insertions, 52 deletions
diff --git a/host/arch/arm/lib/crossystem_arch.c b/host/arch/arm/lib/crossystem_arch.c
index 116f8fc2..700622f6 100644
--- a/host/arch/arm/lib/crossystem_arch.c
+++ b/host/arch/arm/lib/crossystem_arch.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/arch/mips/lib/crossystem_arch.c b/host/arch/mips/lib/crossystem_arch.c
index cb0ea92f..ca03cfec 100644
--- a/host/arch/mips/lib/crossystem_arch.c
+++ b/host/arch/mips/lib/crossystem_arch.c
@@ -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/host/arch/stub/lib/crossystem_arch.c b/host/arch/stub/lib/crossystem_arch.c
index 4a71dddc..91309155 100644
--- a/host/arch/stub/lib/crossystem_arch.c
+++ b/host/arch/stub/lib/crossystem_arch.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c
index 4040ddcc..e6bd7e31 100644
--- a/host/arch/x86/lib/crossystem_arch.c
+++ b/host/arch/x86/lib/crossystem_arch.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/include/cgpt_params.h b/host/include/cgpt_params.h
index b17a0b48..64e31466 100644
--- a/host/include/cgpt_params.h
+++ b/host/include/cgpt_params.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/host/include/crossystem.h b/host/include/crossystem.h
index 63e9ec76..2be7f076 100644
--- a/host/include/crossystem.h
+++ b/host/include/crossystem.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/host/include/crossystem_vbnv.h b/host/include/crossystem_vbnv.h
index 2f246188..7bed1662 100644
--- a/host/include/crossystem_vbnv.h
+++ b/host/include/crossystem_vbnv.h
@@ -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/host/include/openssl_compat.h b/host/include/openssl_compat.h
index 35bb250b..50f0098c 100644
--- a/host/include/openssl_compat.h
+++ b/host/include/openssl_compat.h
@@ -1,4 +1,4 @@
-/* Copyright 2017 The Chromium OS Authors. All rights reserved.
+/* Copyright 2017 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/host/include/vboot_host.h b/host/include/vboot_host.h
index 328c063b..90d5c563 100644
--- a/host/include/vboot_host.h
+++ b/host/include/vboot_host.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/host/lib/cbfstool.c b/host/lib/cbfstool.c
index 9f09d136..4bbed028 100644
--- a/host/lib/cbfstool.c
+++ b/host/lib/cbfstool.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The ChromiumOS Authors.
+/* 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/host/lib/chromeos_config.c b/host/lib/chromeos_config.c
index 6307318c..071f8966 100644
--- a/host/lib/chromeos_config.c
+++ b/host/lib/chromeos_config.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/lib/crossystem.c b/host/lib/crossystem.c
index 6d553357..8ac5e537 100644
--- a/host/lib/crossystem.c
+++ b/host/lib/crossystem.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/crypto.c b/host/lib/crypto.c
index 7103ed8a..ed985467 100644
--- a/host/lib/crypto.c
+++ b/host/lib/crypto.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/lib/extract_vmlinuz.c b/host/lib/extract_vmlinuz.c
index 1260f112..4ccfcf33 100644
--- a/host/lib/extract_vmlinuz.c
+++ b/host/lib/extract_vmlinuz.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/host/lib/file_keys.c b/host/lib/file_keys.c
index 4349dc9b..cd51a075 100644
--- a/host/lib/file_keys.c
+++ b/host/lib/file_keys.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/host/lib/flashrom.c b/host/lib/flashrom.c
index 6ee5971b..6a802011 100644
--- a/host/lib/flashrom.c
+++ b/host/lib/flashrom.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/lib/flashrom_drv.c b/host/lib/flashrom_drv.c
index 2bc0a7be..a9479c29 100644
--- a/host/lib/flashrom_drv.c
+++ b/host/lib/flashrom_drv.c
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* 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/host/lib/fmap.c b/host/lib/fmap.c
index 2609064d..639ea794 100644
--- a/host/lib/fmap.c
+++ b/host/lib/fmap.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/host/lib/host_common.c b/host/lib/host_common.c
index 82a59542..e78e3884 100644
--- a/host/lib/host_common.c
+++ b/host/lib/host_common.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/host/lib/host_key2.c b/host/lib/host_key2.c
index e2e3f318..4f483d3c 100644
--- a/host/lib/host_key2.c
+++ b/host/lib/host_key2.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/host/lib/host_keyblock.c b/host/lib/host_keyblock.c
index e5634ced..04f346f1 100644
--- a/host/lib/host_keyblock.c
+++ b/host/lib/host_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/host/lib/host_misc.c b/host/lib/host_misc.c
index 4b6c8638..63d1fee4 100644
--- a/host/lib/host_misc.c
+++ b/host/lib/host_misc.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/host/lib/host_signature.c b/host/lib/host_signature.c
index 68e6991d..d8926236 100644
--- a/host/lib/host_signature.c
+++ b/host/lib/host_signature.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/host/lib/host_signature2.c b/host/lib/host_signature2.c
index 83b97984..5ec307d6 100644
--- a/host/lib/host_signature2.c
+++ b/host/lib/host_signature2.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/host/lib/include/cbfstool.h b/host/lib/include/cbfstool.h
index 1343d406..acc6e927 100644
--- a/host/lib/include/cbfstool.h
+++ b/host/lib/include/cbfstool.h
@@ -1,4 +1,4 @@
-/* Copyright 2022 The ChromiumOS Authors.
+/* 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/host/lib/include/chromeos_config.h b/host/lib/include/chromeos_config.h
index e83570e5..2e62ac20 100644
--- a/host/lib/include/chromeos_config.h
+++ b/host/lib/include/chromeos_config.h
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/lib/include/crossystem_arch.h b/host/lib/include/crossystem_arch.h
index 6b94d445..d8921cd8 100644
--- a/host/lib/include/crossystem_arch.h
+++ b/host/lib/include/crossystem_arch.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/file_keys.h b/host/lib/include/file_keys.h
index 8176cdbf..5e1ef9a0 100644
--- a/host/lib/include/file_keys.h
+++ b/host/lib/include/file_keys.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/flashrom.h b/host/lib/include/flashrom.h
index 9fae8046..e2d3fb38 100644
--- a/host/lib/include/flashrom.h
+++ b/host/lib/include/flashrom.h
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 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/host/lib/include/fmap.h b/host/lib/include/fmap.h
index 4fddaae8..91417e97 100644
--- a/host/lib/include/fmap.h
+++ b/host/lib/include/fmap.h
@@ -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/host/lib/include/gsc_ro.h b/host/lib/include/gsc_ro.h
index 00a40111..6b44ebcb 100644
--- a/host/lib/include/gsc_ro.h
+++ b/host/lib/include/gsc_ro.h
@@ -1,5 +1,4 @@
-/*
- * Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* 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/host/lib/include/host_common.h b/host/lib/include/host_common.h
index a37a6c9a..fdeb560c 100644
--- a/host/lib/include/host_common.h
+++ b/host/lib/include/host_common.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/host/lib/include/host_key.h b/host/lib/include/host_key.h
index c6fea5b4..7ae96ca6 100644
--- a/host/lib/include/host_key.h
+++ b/host/lib/include/host_key.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/host_keyblock.h b/host/lib/include/host_keyblock.h
index 21257965..e797e291 100644
--- a/host/lib/include/host_keyblock.h
+++ b/host/lib/include/host_keyblock.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/host_misc.h b/host/lib/include/host_misc.h
index 298e742e..1a59af54 100644
--- a/host/lib/include/host_misc.h
+++ b/host/lib/include/host_misc.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/host_signature.h b/host/lib/include/host_signature.h
index 72160fd2..47ffe764 100644
--- a/host/lib/include/host_signature.h
+++ b/host/lib/include/host_signature.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/signature_digest.h b/host/lib/include/signature_digest.h
index ac0cd11b..b6bc5034 100644
--- a/host/lib/include/signature_digest.h
+++ b/host/lib/include/signature_digest.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/include/subprocess.h b/host/lib/include/subprocess.h
index b24b987f..01bca665 100644
--- a/host/lib/include/subprocess.h
+++ b/host/lib/include/subprocess.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/host/lib/include/util_misc.h b/host/lib/include/util_misc.h
index 1f92af95..2a0e0789 100644
--- a/host/lib/include/util_misc.h
+++ b/host/lib/include/util_misc.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/host/lib/signature_digest.c b/host/lib/signature_digest.c
index a0364702..8ab34647 100644
--- a/host/lib/signature_digest.c
+++ b/host/lib/signature_digest.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 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/host/lib/subprocess.c b/host/lib/subprocess.c
index ee181591..8a76d6f0 100644
--- a/host/lib/subprocess.c
+++ b/host/lib/subprocess.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/host/lib/util_misc.c b/host/lib/util_misc.c
index c92a2b0a..86f70cd5 100644
--- a/host/lib/util_misc.c
+++ b/host/lib/util_misc.c
@@ -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/host/lib21/host_common.c b/host/lib21/host_common.c
index d0268c23..4b7609e6 100644
--- a/host/lib21/host_common.c
+++ b/host/lib21/host_common.c
@@ -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/host/lib21/host_key.c b/host/lib21/host_key.c
index c880d451..91ca43b9 100644
--- a/host/lib21/host_key.c
+++ b/host/lib21/host_key.c
@@ -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/host/lib21/host_misc.c b/host/lib21/host_misc.c
index 6c0e0ef3..66a0abee 100644
--- a/host/lib21/host_misc.c
+++ b/host/lib21/host_misc.c
@@ -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/host/lib21/host_signature.c b/host/lib21/host_signature.c
index cd49b3b2..e0a56b0d 100644
--- a/host/lib21/host_signature.c
+++ b/host/lib21/host_signature.c
@@ -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/host/lib21/include/host_common21.h b/host/lib21/include/host_common21.h
index 55b623d3..eca97543 100644
--- a/host/lib21/include/host_common21.h
+++ b/host/lib21/include/host_common21.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/host/lib21/include/host_key21.h b/host/lib21/include/host_key21.h
index ae53ad5c..a808202e 100644
--- a/host/lib21/include/host_key21.h
+++ b/host/lib21/include/host_key21.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/host/lib21/include/host_misc21.h b/host/lib21/include/host_misc21.h
index 795ebb23..14658140 100644
--- a/host/lib21/include/host_misc21.h
+++ b/host/lib21/include/host_misc21.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/host/lib21/include/host_signature21.h b/host/lib21/include/host_signature21.h
index 0b1784af..093814d7 100644
--- a/host/lib21/include/host_signature21.h
+++ b/host/lib21/include/host_signature21.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/host/lib21/include/host_struct21.h b/host/lib21/include/host_struct21.h
index 6f91e36c..463304a3 100644
--- a/host/lib21/include/host_struct21.h
+++ b/host/lib21/include/host_struct21.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.
*