18 lines
493 B
Plaintext
18 lines
493 B
Plaintext
# 2nd part of common vxWorks startup
|
|
|
|
# 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
|