9e0657424e
* clang-format: Ignore javascript files Ignore javascript files. Clang-format is not very good formatter for javascript files anyway. If we ever need javascript formatter we should use Prettier. * clang-format: Ignore some lines in sources Couple things get formatted really funky if we let clang-format format those. Just ignore those locally. * zephyr/tescase.yaml: Fix yaml syntax pre-commit hook check-yaml did found out that there are two skips. Remove another as this is not right syntax. * Fix repo contains unicode replacement chars When running pre-commit text-unicode-replacement-char it founds that there is couple unicode replacemnt chars. Remove and replace these. * Convert some tabs to spaces manually We will soon auto format tabs to spaces. How ever it could not do couple thing so fix those by hand first. * Make files with shebang executables It is good habit that if file has shebang then it is marked executable. These where found with pre-commit check-shebang-scripts-are-executable checker. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
74 lines
1.4 KiB
Bash
Executable File
74 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -x
|
|
|
|
#
|
|
# Generated - do not edit!
|
|
#
|
|
|
|
# Macros
|
|
TOP=`pwd`
|
|
CND_CONF=default
|
|
CND_DISTDIR=dist
|
|
TMPDIR=build/${CND_CONF}/${IMAGE_TYPE}/tmp-packaging
|
|
TMPDIRNAME=tmp-packaging
|
|
OUTPUT_PATH=dist/${CND_CONF}/${IMAGE_TYPE}/BACnet-Server.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
|
OUTPUT_BASENAME=BACnet-Server.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
|
PACKAGE_TOP_DIR=bacnet-server.x/
|
|
|
|
# Functions
|
|
function checkReturnCode
|
|
{
|
|
rc=$?
|
|
if [ $rc != 0 ]
|
|
then
|
|
exit $rc
|
|
fi
|
|
}
|
|
function makeDirectory
|
|
# $1 directory path
|
|
# $2 permission (optional)
|
|
{
|
|
mkdir -p "$1"
|
|
checkReturnCode
|
|
if [ "$2" != "" ]
|
|
then
|
|
chmod $2 "$1"
|
|
checkReturnCode
|
|
fi
|
|
}
|
|
function copyFileToTmpDir
|
|
# $1 from-file path
|
|
# $2 to-file path
|
|
# $3 permission
|
|
{
|
|
cp "$1" "$2"
|
|
checkReturnCode
|
|
if [ "$3" != "" ]
|
|
then
|
|
chmod $3 "$2"
|
|
checkReturnCode
|
|
fi
|
|
}
|
|
|
|
# Setup
|
|
cd "${TOP}"
|
|
mkdir -p ${CND_DISTDIR}/${CND_CONF}/package
|
|
rm -rf ${TMPDIR}
|
|
mkdir -p ${TMPDIR}
|
|
|
|
# Copy files and create directories and links
|
|
cd "${TOP}"
|
|
makeDirectory ${TMPDIR}/bacnet-server.x/bin
|
|
copyFileToTmpDir "${OUTPUT_PATH}" "${TMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
|
|
|
|
|
|
# Generate tar file
|
|
cd "${TOP}"
|
|
rm -f ${CND_DISTDIR}/${CND_CONF}/package/bacnet-server.x.tar
|
|
cd ${TMPDIR}
|
|
tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/package/bacnet-server.x.tar *
|
|
checkReturnCode
|
|
|
|
# Cleanup
|
|
cd "${TOP}"
|
|
rm -rf ${TMPDIR}
|