You've already forked hexagon-dsp-binaries
mirror of
https://github.com/linux-msm/hexagon-dsp-binaries.git
synced 2026-02-25 13:14:28 -08:00
Add missing License tags and copyrights. The scripts were written by a Linaro employee, so that company owns initial copyrights. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
83 lines
1.3 KiB
Bash
Executable File
83 lines
1.3 KiB
Bash
Executable File
#! /bin/sh
|
|
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2024 Linaro Ltd.
|
|
#
|
|
# Install DSP shell and libraries
|
|
|
|
set -e
|
|
|
|
if [ "$#" -ne 2 -o "$1" = "-h" -o "$1" = "--help" ]
|
|
then
|
|
echo "Usage: $0 config.txt <destdir>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
CFG="$1"
|
|
DST="$2"
|
|
|
|
if ! [ -r "${CFG}" ]
|
|
then
|
|
echo "config ${CFG} is unreadable" >&2
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "${DST}"
|
|
|
|
# dstdir srcdir
|
|
do_licence() {
|
|
found=0
|
|
while read line ; do
|
|
[ "$line" = "Dir: $2" ] && break
|
|
done
|
|
while read line ; do
|
|
lic=${line##Licence: }
|
|
if [ "$lic" != "$line" ]
|
|
then
|
|
install -m 0644 $lic "$1" || exit 1
|
|
found=1
|
|
break
|
|
fi
|
|
done
|
|
if [ $found -eq 0 ] ; then
|
|
echo "License for $2 not found"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# dest subdir DSP QC_IMAGE_VERSION_STRING
|
|
# FIXME: maybe install only a fixed set of files
|
|
do_install() {
|
|
local srcdir="$2/$4"
|
|
local dstdir="$1/$2/dsp/$3"
|
|
|
|
mkdir -p "${dstdir}"
|
|
install -m 0644 "${srcdir}"/* "${dstdir}"
|
|
|
|
do_licence "${dstdir}" "${srcdir}" < WHENCE
|
|
}
|
|
|
|
# dest target link
|
|
do_link() {
|
|
local target="$1/$2"
|
|
local link="$1/$3"
|
|
|
|
mkdir -p "`dirname "${link}"`"
|
|
rm -f "${link}"
|
|
ln -sr -T "${target}" "${link}"
|
|
}
|
|
|
|
grep -v '^#\|^$' "${CFG}" | while read verb rest
|
|
do
|
|
case ${verb} in
|
|
"Install:" )
|
|
do_install ${DST} ${rest}
|
|
;;
|
|
"Link:" )
|
|
do_link ${DST} ${rest}
|
|
;;
|
|
* )
|
|
echo "Unsupported clause ${verb}" >&2
|
|
exit 1
|
|
esac
|
|
done
|