Skip to content

Commit 123218c

Browse files
fdesbiensCopilot
andcommitted
Added copyright headers to files missing them
Applied the standard MIT license header to all project-owned C, header, assembly, shell, and Python files that were missing a copyright notice. Third-party, toolchain startup, and auto-generated files were excluded. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b9f54b8 commit 123218c

10 files changed

Lines changed: 110 additions & 0 deletions

File tree

samples/demo_filex_nand_flash.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/***************************************************************************/
2+
/* Copyright (c) 2024 Microsoft Corporation */
3+
/* Copyright (c) 2026 Eclipse ThreadX contributors */
4+
/* */
5+
/* This program and the accompanying materials are made available under */
6+
/* the terms of the MIT License which is available at */
7+
/* https://opensource.org/licenses/MIT. */
8+
/* */
9+
/* SPDX-License-Identifier: MIT */
10+
/***************************************************************************/
11+
112
/* This is a small demo of the high-performance FileX FAT file system with LevelX
213
and the NAND simulated driver. */
314

samples/demo_filex_nor_flash.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/***************************************************************************/
2+
/* Copyright (c) 2024 Microsoft Corporation */
3+
/* Copyright (c) 2026 Eclipse ThreadX contributors */
4+
/* */
5+
/* This program and the accompanying materials are made available under */
6+
/* the terms of the MIT License which is available at */
7+
/* https://opensource.org/licenses/MIT. */
8+
/* */
9+
/* SPDX-License-Identifier: MIT */
10+
/***************************************************************************/
11+
112
/* This is a small demo of the high-performance FileX FAT file system with LevelX
213
and the NOR simulated driver. */
314

scripts/build.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
##############################################################################
12+
213
$(dirname `realpath $0`)/../test/cmake/run.sh build all

scripts/install.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
##############################################################################
12+
213
#
314

415
# Remove large folder

scripts/test.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
##############################################################################
12+
213
$(dirname `realpath $0`)/../test/cmake/run.sh test all

test/cmake/coverage.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
##############################################################################
12+
213

314
set -e
415

test/cmake/run.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
##############################################################################
12+
213

314
cd $(dirname $0)
415

test/regression/levelx_nand_flash_test.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/***************************************************************************/
2+
/* Copyright (c) 2024 Microsoft Corporation */
3+
/* Copyright (c) 2026 Eclipse ThreadX contributors */
4+
/* */
5+
/* This program and the accompanying materials are made available under */
6+
/* the terms of the MIT License which is available at */
7+
/* https://opensource.org/licenses/MIT. */
8+
/* */
9+
/* SPDX-License-Identifier: MIT */
10+
/***************************************************************************/
11+
112
/* Basic NOR flash tests... */
213

314
#include <stdio.h>

test/regression/levelx_nor_flash_test.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/***************************************************************************/
2+
/* Copyright (c) 2024 Microsoft Corporation */
3+
/* Copyright (c) 2026 Eclipse ThreadX contributors */
4+
/* */
5+
/* This program and the accompanying materials are made available under */
6+
/* the terms of the MIT License which is available at */
7+
/* https://opensource.org/licenses/MIT. */
8+
/* */
9+
/* SPDX-License-Identifier: MIT */
10+
/***************************************************************************/
11+
112
/* Basic NOR flash tests... */
213

314
#include <stdio.h>

test/regression/levelx_nor_flash_test_cache.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/***************************************************************************/
2+
/* Copyright (c) 2024 Microsoft Corporation */
3+
/* Copyright (c) 2026 Eclipse ThreadX contributors */
4+
/* */
5+
/* This program and the accompanying materials are made available under */
6+
/* the terms of the MIT License which is available at */
7+
/* https://opensource.org/licenses/MIT. */
8+
/* */
9+
/* SPDX-License-Identifier: MIT */
10+
/***************************************************************************/
11+
112
/* Basic NOR flash tests... */
213

314
#include <stdio.h>

0 commit comments

Comments
 (0)