fs: migrate to SPDX identifier

Most tools used for compliance and SBOM generation use SPDX identifiers
This change brings us a step closer to an easy SBOM generation.

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea
2024-11-05 09:32:55 +01:00
committed by Xiang Xiao
parent 6381685a8b
commit 6833b8787e
287 changed files with 622 additions and 65 deletions
+2
View File
@@ -1,6 +1,8 @@
# ##############################################################################
# fs/spiffs/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
+2
View File
@@ -1,6 +1,8 @@
############################################################################
# fs/spiffs/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
+2
View File
@@ -1,6 +1,8 @@
# ##############################################################################
# fs/spiffs/src/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs.h
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_cache.c
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2
View File
@@ -1,6 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_cache.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_check.c
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2
View File
@@ -1,6 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_check.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_core.c
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_core.h
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2 -2
View File
@@ -1,8 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_gc.c
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-
+2
View File
@@ -1,6 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_gc.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
+2
View File
@@ -1,6 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_mtd.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
+2
View File
@@ -1,6 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_mtd.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
+2 -3
View File
@@ -1,9 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_vfs.c
* Interface between SPIFFS and the NuttX VFS
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* Includes logic taken from 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license.
+2 -3
View File
@@ -1,9 +1,8 @@
/****************************************************************************
* fs/spiffs/src/spiffs_volume.c
* SPIFFS Utility Functions for Volume and File Object Support
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileCopyrightText: 2018 Gregory Nutt
*
* This is a port of version 0.3.7 of SPIFFS by Peter Andersion. That
* version was originally released under the MIT license but is here re-