forked from open-power/snap
-
Notifications
You must be signed in to change notification settings - Fork 4
/
check_pslse.sh
executable file
·48 lines (48 loc) · 2.09 KB
/
check_pslse.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
#
# Copyright 2017 International Business Machines
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
###############################################################################
cd ${PSLSE_ROOT}
version=`git describe --tags`
branch=`git branch`
echo "checking PSLSE_ROOT=${PSLSE_ROOT}"
echo "card=$FPGACARD version=$version branch=$branch PSLVER=$PSLVER"
#case $FPGACARD in
# "N250SP") if [ $branch != "\* capi2" ];then echo "WARNING: PSLSE branch=$branch should be capi2";fi;;
# "RCXVUP") if [ $branch != "\* capi2" ];then echo "WARNING: PSLSE branch=$branch should be capi2";fi;;
# "FX609" ) if [ $branch != "\* capi2" ];then echo "WARNING: PSLSE branch=$branch should be capi2";fi;;
# "S241" ) if [ $branch != "\* capi2" ];then echo "WARNING: PSLSE branch=$branch should be capi2";fi;;
# *) if [ $version != "v3.1" ];then echo "WARNING: PSLSE version=$version should be v3.1";fi;;
#esac
#### Checking if PSLSE was compiled with the same version than what the card requests
if [ -e ".pslsecompiled" ]; then
RESP=`grep PSLVER_ .pslsecompiled`
if [ $RESP == "PSLVER_8" ] && [ $PSLVER == 9 ] ; then
echo "WARNING PSLSE compiled for P8 while P9 model asked => recompiling PSLSE"
make clean
echo "PSLVER_$PSLVER" > .pslsecompiled
fi
if [ $RESP == "PSLVER_9" ] && [ $PSLVER == 8 ]; then
echo "WARNING PSLSE compiled for P9 while P8 model asked => recompiling PSLSE"
make clean
echo "PSLVER_$PSLVER" > .pslsecompiled
fi
else
echo "WARNING PSLSE compiled version unknown: creating .pslsecompiled file + recompiling"
make clean
echo "PSLVER_$PSLVER" >> .pslsecompiled
fi
cd -