moved all functionality to main startup script

This commit is contained in:
2025-07-22 17:32:43 +02:00
parent bede79dbe4
commit 2e17262e45
2 changed files with 9 additions and 14 deletions

View File

@@ -35,9 +35,7 @@ execute STRINGBUFFER
# Setup Time (must be set after loading EPICS core)
# 2025:
putenv "EPICS_TIMEZONE=MET::-60:033102:102703"
putenv "TIMEZONE=MET::-60:033102:102703"
putenv "EPICS_TS_MIN_WEST=-60"
# Allow backward compatible non-monotonic breaktables
dbBptNotMonotonic=1
@@ -45,6 +43,9 @@ dbBptNotMonotonic=1
# Quiet warnings about unresolved macros in comments
dbQuietMacroWarnings=1
# Some diagnostics on soft reboots, in case it hangs
atExitDebug = 1
# Start Logging
putenv getenv("EPICS_IOC_LOG_INET") ? "" : "EPICS_IOC_LOG_INET=gfa-syslog-03"
putenv getenv("EPICS_IOC_LOG_PORT") ? "" : "EPICS_IOC_LOG_PORT=1514"
@@ -72,6 +73,12 @@ require_registerRecordDeviceDriver pdbbase
require "utilities", getenv("utilities_VERSION")
require "misc", getenv("misc_VERSION")
# IOC monitoring
require "iocStats", getenv("iocStats_VERSION")
# Database Upload
require "iocinfo", getenv("iocinfo_VERSION")
# caPutLog
putenv "EPICS_CA_PUT_LOG_ADDR=gfa-syslog-03:1515"
require "caPutLog", getenv("caPutLog_VERSION") ? getenv("caPutLog_VERSION") : "ifexists"

View File

@@ -1,13 +1 @@
# 2nd part of common vxWorks startup
# IOC monitoring
require "iocStats", getenv("iocStats_VERSION")
# Database Upload
require "iocinfo", getenv("iocinfo_VERSION")?getenv("iocinfo_VERSION"):"ifexists"
iocInit
atExitDebug = 1
# end of startup.script_part2