source: ssp_aarch64/trunk/install.sh@ 356

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

set svn:mime-type to files

  • Property svn:mime-type set to text/plain; charset=utf-8
File size: 325 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}/arm64_gcc ${SSPDIR}/arch/
14cp -a ${SCRIPT_DIR}/qemu_virt_gcc ${SSPDIR}/target/
15(cd ${SSPDIR} && patch -p1 < ${SCRIPT_DIR}/ssp_aarch64.patch)
16
17exit 0
Note: See TracBrowser for help on using the repository browser.