Skip to content

Commit 300bc62

Browse files
tmichalakTim 'mithro' Ansell
authored andcommitted
Add licensing header to bash scripts
Signed-off-by: Tomasz Michalak <[email protected]> Signed-off-by: Tim 'mithro' Ansell <[email protected]>
1 parent 159d6a8 commit 300bc62

File tree

92 files changed

+651
-0
lines changed

Some content is hidden

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

92 files changed

+651
-0
lines changed

.github/kokoro/db-full.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/db-quick.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/steps/git.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/steps/hostinfo.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/steps/hostsetup.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/steps/prjxray-env.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

.github/kokoro/steps/xilinx.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
# Fix up things related to Xilinx tool chain.
411

.github/kokoro/tests.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
set -e
411

download-latest-db.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
#!/usr/bin/env bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
9+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
10+
#
11+
# Use of this source code is governed by a ISC-style
12+
# license that can be found in the LICENSE file or at
13+
# https://opensource.org/licenses/ISC
14+
#
15+
# SPDX-License-Identifier: ISC
216

317
GITHUB_PROTO=${1:-https}
418
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjxray-db.git

experiments/clbpips/generate.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/bin/bash
2+
# Copyright (C) 2017-2020 The Project X-Ray Authors.
3+
#
4+
# Use of this source code is governed by a ISC-style
5+
# license that can be found in the LICENSE file or at
6+
# https://opensource.org/licenses/ISC
7+
#
8+
# SPDX-License-Identifier: ISC
29

310
source ../../utils/environment.sh
411
source ${XRAY_GENHEADER}

0 commit comments

Comments
 (0)