From 476444b13af7c0a40efb76e5c3fa440ddcde3546 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins <jameson.rollins@ligo.org> Date: Mon, 11 May 2020 11:39:28 -0700 Subject: [PATCH] install: remove reference to .rtl components, which are not built or used anymore --- install | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/install b/install index a1ad3e749..9f6a7975f 100755 --- a/install +++ b/install @@ -82,18 +82,12 @@ echo Installing $TARGET; if test -e $TARGET/bin/${system}.ko; then mv -f $TARGET/bin/${system}.ko $TARGET/archive/${system}fe_${cur_date}.ko || exit 4 fi -if test -e $TARGET/bin/${system}.rtl; then - mv -f $TARGET/bin/${system}.ko $TARGET/archive/${system}fe_${cur_date}.rtl || exit 4 -fi if test -e src/fe/${system}/${system}.ko; then cp -fp src/fe/${system}/${system}.ko $TARGET/bin/ fi if test -e src/fe/${system}_usp/${system}; then cp -fp src/fe/${system}_usp/${system} $TARGET/bin/ fi -if test -e src/fe/${system}/${system}.rtl; then - cp -fp src/fe/${system}/${system}.rtl $TARGET/bin/ -fi if test -e $TARGET/bin/${system}.ko; then echo 'sudo /sbin/insmod' $TARGET/bin/${system}.ko ' > '$TARGET/logs/log.txt ' 2>& 1 &' > $TARGET/scripts/startup${ifo}rt chmod +x $TARGET/scripts/startup${ifo}rt @@ -102,10 +96,6 @@ if test -e $TARGET/bin/${system}; then echo 'taskset -c '$targetcpu $TARGET/bin/${system} '-m ' ${system} ' > '$TARGET/logs/log.txt ' 2>& 1 &' > $TARGET/scripts/startup${ifo}usp chmod +x $TARGET/scripts/startup${ifo}usp fi -if test -e $TARGET/bin/${system}.rtl; then - echo sudo $TARGET/bin/${system}.rtl ' > '$TARGET/logs/log.txt ' 2>& 1 &' > $TARGET/scripts/startup${ifo}rt - chmod +x $TARGET/scripts/startup${ifo}rt -fi -- GitLab