source: ssp_rpi3/trunk/install.sh@ 408

Last change on this file since 408 was 408, checked in by nmir-saito, 4 years ago

delete ssp_aarch64.patch and remove unused line

  • Property svn:mime-type set to text/plain; charset=utf-8
File size: 275 bytes
Line 
1#!/usr/bin/env bash
2set -eu
3
4SCRIPT_DIR=$(cd $(dirname $0);pwd)
5
6if [ $# -lt 1 ]; then
7 echo "usage: install.sh dest_ssp_dir"
8 exit 1
9else
10 SSPDIR=$1
11fi
12
13cp -a ${SCRIPT_DIR}/arch/arm64_gcc ${SSPDIR}/arch/
14cp -a ${SCRIPT_DIR}/target/rpi_arm64_gcc ${SSPDIR}/target/
15
16exit 0
Note: See TracBrowser for help on using the repository browser.