Last change
on this file since 384 was 384, checked in by nmir-saito, 4 years ago |
add target dependent files of ssp for rpi3
|
-
Property svn:mime-type
set to
text/plain; charset=utf-8
|
File size:
337 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash
|
---|
2 | set -eu
|
---|
3 |
|
---|
4 | SCRIPT_DIR=$(cd $(dirname $0);pwd)
|
---|
5 |
|
---|
6 | if [ $# -lt 1 ]; then
|
---|
7 | echo "usage: install.sh dest_ssp_dir"
|
---|
8 | exit 1
|
---|
9 | else
|
---|
10 | SSPDIR=$1
|
---|
11 | fi
|
---|
12 |
|
---|
13 | cp -a ${SCRIPT_DIR}/arch/arm64_gcc ${SSPDIR}/arch/
|
---|
14 | cp -a ${SCRIPT_DIR}/target/rpi_arm64_gcc ${SSPDIR}/target/
|
---|
15 | (cd ${SSPDIR} && patch -p1 < ${SCRIPT_DIR}/ssp_aarch64.patch)
|
---|
16 |
|
---|
17 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.