epics-modules / std

APS BCDA synApps module:
http://epics-modules.github.io/std/
Other
5 stars 9 forks source link

Remove scaler record code #17

Closed MarkRivers closed 3 years ago

MarkRivers commented 3 years ago

This PR removes the scaler record code from std. It is now in the new scaler repository.

The following modules require changes for this. I have issues pull requests in those as well.

MarkRivers commented 3 years ago

It is potentially a lot of work to change all IOC startup scripts to load the scaler records from SCALER rather than STD. This little script can make it easier:

find . -name '*.cmd' -exec sed -i 's/$(STD)\/db\/scaler/$(SCALER)\/db\/scaler/' {} \;
find . -name '*.cmd' -exec sed -i 's/$(STD)\/stdApp\/Db\/scaler/$(SCALER)\/db\/scaler/' {} \;