Add copyright & license to .sh, .yml, .pl files. Edit Makefile for KV260
* Updated the Makefile for KV260 template as the copyright was not generated properly Signed-off-by: Iulia Moldovan <Iulia.Moldovan@analog.com>main
parent
28c06d505f
commit
86c9847c5f
|
@ -1,6 +1,12 @@
|
|||
#!/bin/sh
|
||||
|
||||
##############################################################################
|
||||
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
||||
### SPDX short identifier: BSD-1-Clause
|
||||
#
|
||||
# Ensure there are README.md (case insensitive name) files in all the project directories
|
||||
# The purpose of this script:
|
||||
## Ensure there are README.md (case insensitive name) files in all the project directories
|
||||
##############################################################################
|
||||
|
||||
set -e
|
||||
#set -x
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
##############################################################################
|
||||
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
||||
#
|
||||
## GitHub action script for the check_guideline.py script located in .github/scripts
|
||||
##############################################################################
|
||||
|
||||
name: Guideline checker
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
##############################################################################
|
||||
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
||||
#
|
||||
## GitHub action script for the check_for_missing_readme_md.sh script located
|
||||
## in .github/scripts
|
||||
##############################################################################
|
||||
|
||||
name: Lint
|
||||
|
||||
on:
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
##############################################################################
|
||||
## Copyright (C) 2014-2023 Analog Devices, Inc. All rights reserved.
|
||||
### SPDX short identifier: BSD-1-Clause
|
||||
##############################################################################
|
||||
|
||||
# Depending on simulator, search for errors or 'SUCCESS' keyword in specific log
|
||||
if [[ "$SIMULATOR" == "modelsim" ]]; then
|
||||
ERRS=`grep -i -e '# Error ' -e '# Fatal' -e '# Failed' -C 10 ${NAME}_modelsim.log`
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
##############################################################################
|
||||
## Copyright (C) 2014-2023 Analog Devices, Inc. All rights reserved.
|
||||
### SPDX short identifier: BSD-1-Clause
|
||||
##############################################################################
|
||||
|
||||
export NAME=`basename $0`
|
||||
|
||||
# MODE not defined or defined to something else than 'batch'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
####################################################################################
|
||||
## Copyright (c) 2023 Analog Devices, Inc.
|
||||
## Copyright (c) 2018 - 2023 Analog Devices, Inc.
|
||||
### SPDX short identifier: BSD-1-Clause
|
||||
## Auto-generated, do not modify!
|
||||
####################################################################################
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
#!/usr/bin/perl -w
|
||||
|
||||
################################################################################
|
||||
###############################################################################
|
||||
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
||||
### SPDX short identifier: ADIBSD
|
||||
#
|
||||
# This script is meant to be used together with gtwizard_generator.tcl
|
||||
# It parses and provides as output a list of unique parameters to a provided GT wizard configuration
|
||||
# Must be called from the project folder, where the IP instance is (*.gen/sources_1/ip)
|
||||
#
|
||||
################################################################################
|
||||
###############################################################################
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
# use bigint;
|
||||
|
|
Loading…
Reference in New Issue