22 lines
662 B
Plaintext
22 lines
662 B
Plaintext
# 2nd part of common vxWorks startup
|
|
|
|
# caPutLog
|
|
putenv "EPICS_CA_PUT_LOG_ADDR=gfa-syslog:1515 gfa-logstash.psi.ch:1515"
|
|
require "caPutLog", getenv("caPutLog_VERSION")?getenv("caPutLog_VERSION"):"ifexists"
|
|
|
|
# IOC monitoring
|
|
require R3_13?"iocmon":"iocStats", getenv(R3_13?"iocmon_VERSION":"iocStats_VERSION")
|
|
|
|
# Battery monitoring
|
|
require "M48T37", getenv("M48T37_VERSION")?getenv("M48T37_VERSION"):"ifexists"
|
|
|
|
# Database Upload
|
|
require "iocinfo", getenv("iocinfo_VERSION")?getenv("iocinfo_VERSION"):"ifexists"
|
|
|
|
#Enable memory >32MB on IOC that have it. (Is a NOOP on all others)
|
|
memAddToPool sysMemTop(), EXTENDED_MEMORY
|
|
|
|
iocInit
|
|
|
|
# end of startup.script_part2
|