Skip to content
Snippets Groups Projects
Commit eecf0afc authored by Erik von Reis's avatar Erik von Reis
Browse files

Will not install modules with dcuid >= 256. Closes #125

parent f3ba3937
No related branches found
No related tags found
1 merge request!124Will not install modules with dcuid >= 256.
......@@ -138,7 +138,7 @@ if [ x$gds_node != "x" ]; then
##########
echo "Updating testpoint config file..."
if test -e src/fe/${system}/${system}.ko; then
if [[ $gds_node -lt 256 ]] && test -e src/fe/${system}/${system}.ko; then
if test -e $RTCDS/target/gds/param/testpoint.par; then
mv -f $RTCDS/target/gds/param/testpoint.par $RTCDS/target/gds/param/archive/testpoint_${cur_date}.par || exit 1
testpoint_par_infname=$RTCDS/target/gds/param/archive/testpoint_${cur_date}.par
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment