Skip to content

Commit eb53c23

Browse files
pelusetomzawadzki
authored andcommitted
add (c) and SPDX header to bash files as needed
per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc) For intel copyrights added, --follow and -C95% were used. Signed-off-by: paul luse <[email protected]> Change-Id: I2ef86976095b88a9bf5b1003e59f3943cd6bbe4c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15209 Tested-by: SPDK CI Jenkins <[email protected]> Community-CI: Mellanox Build Bot Reviewed-by: Ben Walker <[email protected]> Reviewed-by: Krzysztof Karas <[email protected]> Reviewed-by: Jim Harris <[email protected]>
1 parent 97455ab commit eb53c23

File tree

291 files changed

+1184
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

291 files changed

+1184
-172
lines changed

autobuild.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2015 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
set -e
48

autopackage.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2015 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
set -e
48

autorun.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2016 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
set -e
48

autotest.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2015 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
rootdir=$(readlink -f $(dirname $0))
48

configure

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2017 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
set -e
48

docker/build_base/post-install

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2021 Intel Corporation
4+
# All rights reserved.
5+
#
6+
27
set -e
38

49
dnf install -y /tmp/*.rpm

docker/spdk-app/init

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2021 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
app=spdk_tgt args=() limit_args=()
48

docker/traffic-generator/init

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2021 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
args=()
48

rpmbuild/rpm-deps.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2021 Intel Corporation
4+
# All rights reserved.
5+
#
26
# This script simply iterates over all libs SPDK binaries link
37
# to and returns a list of .rpm packages SPDK may depend on. At
48
# the end, the list strictly relates to how the SPDK build was

rpmbuild/rpm.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: BSD-3-Clause
3+
# Copyright (C) 2021 Intel Corporation
4+
# All rights reserved.
5+
#
26

37
set -e
48

0 commit comments

Comments
 (0)