The top-level subsystem subdirectories in the cds_user_apps source repository were renamed today to be all lower case. This required checking out the new directory and updating all of the model links in /opt/rtcds/caltech/c1. Here is how I updated the cds_user_apps working tree:
cd /opt/rtcds/caltech/c1/userapps
mv trunk{,.bak}
svn update --depth=files trunk
svn update --depth=empty trunk/{cds,isi,isc,psl,sus}
I then fixed the links in the /opt/rtcds/caltech/c1/core/release/src/epics/simLink directory:
for link in $(find . -maxdepth 1 -type l); do ln -sf $(readlink $link | tr [:upper:] [:lower:]) ; done
A couple of things had to be cleaned up:
- /opt/rtcds/caltech/c1/userapps/trunk/cds/c1/models/c1uct.mdl was linked in, but that model doesn't seem to exist anymore, so I removed the link.
- a couple of things were linked from /opt/rtcds/caltech/c1/userapps/trunk instead of /opt/rtcds/caltech/c1/userapps/release, so I fixed those links.
- /opt/rtcds/caltech/c1/userapps/release/cds/test/models/llo/l1isctest.mdl was not checked out, so I checked it out and fixed the link (this model should really be named something different if it is of common use, or we plan on using it at the 40m).
|