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
Create ASCII rather than binary signatures, they are easier to handle. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
10 lines
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
|
|
set -e
|
|
make check
|
|
git tag -s -m "Hexagon DSP binaries, release $1" $1
|
|
make dist
|
|
gpg --sign -b -a dist/hexagon-dsp-binaries_$1.tar.gz
|