From 8bf2a4c24601c4d89ac1922618ec967bb991aca3 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Mon, 11 Feb 2019 15:10:45 -0700 Subject: [PATCH] storage: flash_map: fix copyright assignment Zephyr's flash_map code is largely copied wholesale from MCUboot, but the copyrights were done incorrectly when the copy/pasting happened. The current copyright holders are listed as Nordic and Runtime. This is the patch which removed it from MCUboot; there is no copyright holder explicitly named: https://github.com/JuulLabs-OSS/mcuboot/commit/b788c71c08394a403d7755d6f9dd3fd53e9d3d9c#diff-e4c0c184210793513328934f14840a4c In fact, I was the author of a nontrivial portion of it, introduced here: https://github.com/JuulLabs-OSS/mcuboot/commit/dc4c42bf6211e199990a5ec2c7192cf734a5f309#diff-e4c0c184210793513328934f14840a4c At the time, I was working for Linaro, so add their copyright to the copy of this file introduced into Zephyr. Signed-off-by: Marti Bolivar --- subsys/storage/flash_map/flash_map.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/storage/flash_map/flash_map.c b/subsys/storage/flash_map/flash_map.c index 93360e28d1a..ee4eb024a53 100644 --- a/subsys/storage/flash_map/flash_map.c +++ b/subsys/storage/flash_map/flash_map.c @@ -1,6 +1,7 @@ /* * Copyright (c) 2017 Nordic Semiconductor ASA * Copyright (c) 2015 Runtime Inc + * Copyright (c) 2017 Linaro Ltd * * SPDX-License-Identifier: Apache-2.0 */