Commit 588dfe31 authored by Michal Berger's avatar Michal Berger Committed by Tomasz Zawadzki
Browse files

Add SPDX header to various files



They were missed by the initial set of patches which introduced this
header as a mandatory one across different types of files.

Signed-off-by: default avatarMichal Berger <michal.berger@intel.com>
Change-Id: I3f9b37d41298c843e1648e72fe8593768ccd37e0
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15423


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
parent eb53c232
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
#!/bin/sh
#  SPDX-License-Identifier: BSD-3-Clause
#  All rights reserved.

#
# Verify what is about to be committed.
# Called by "git commit" with no arguments.  The hook should
+3 −0
Original line number Diff line number Diff line
#!/bin/sh
#  SPDX-License-Identifier: BSD-3-Clause
#  All rights reserved.

# Verify what is about to be pushed.  Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed.  If this script exits with a non-zero status nothing will be pushed.
+4 −0
Original line number Diff line number Diff line
#!/usr/bin/python3
#  SPDX-License-Identifier: BSD-3-Clause
#  Copyright (C) 2017 Intel Corporation.
#  All rights reserved.


import shutil
import subprocess
+4 −0
Original line number Diff line number Diff line
#  SPDX-License-Identifier: BSD-3-Clause
#  Copyright (C) 2021 Intel Corporation.
#  All rights reserved.

from spdk.rpc.client import print_json


+4 −0
Original line number Diff line number Diff line
#  SPDX-License-Identifier: BSD-3-Clause
#  Copyright (C) 2022 Intel Corporation.
#  All rights reserved.

from spdk.rpc.client import print_json


Loading