2021-05-18 17:12:40 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
|
|
export PULPRT_TARGET=pulpissimo
|
|
|
|
|
export PULPRUN_TARGET=pulpissimo
|
|
|
|
|
export USE_CV32E40P=1
|
2022-04-07 23:00:46 +00:00
|
|
|
# use plusarg to pass simulation boot parameters instead of floating parameters
|
|
|
|
|
export CONFIG_PLUSARG_SIM=1
|
2022-04-07 23:10:39 +00:00
|
|
|
unset CONFIG_USE_ZFINX
|
2021-05-18 17:12:40 +00:00
|
|
|
|
2021-07-19 08:24:22 +00:00
|
|
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
2021-05-18 17:12:40 +00:00
|
|
|
DIR="$(readlink -f -- "${(%):-%x}")"
|
|
|
|
|
scriptDir="$(dirname $DIR)"
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
source $scriptDir/common.sh
|