From eecf0afc8eb4fd28c34cc1f9c489dffab5dcc08c Mon Sep 17 00:00:00 2001
From: Erik von Reis <evonreis@caltech.edu>
Date: Fri, 19 Jun 2020 14:07:38 -0500
Subject: [PATCH] Will not install modules with dcuid >= 256.  Closes #125

---
 install | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install b/install
index 908d2f700..eb44fff62 100755
--- a/install
+++ b/install
@@ -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
-- 
GitLab