Cleanup, fix an issue reported by Kazuro Furukawa.

This commit is contained in:
Andrew Johnson
2008-10-08 22:42:49 +00:00
parent 49687e27b2
commit 0fff507aea
8 changed files with 33 additions and 70 deletions
@@ -8,14 +8,14 @@
cd ${TOP}
## Register all support components
dbLoadDatabase("dbd/_APPNAME_.dbd",0,0)
_CSAFEAPPNAME__registerRecordDeviceDriver(pdbbase)
dbLoadDatabase "dbd/_APPNAME_.dbd"
_CSAFEAPPNAME__registerRecordDeviceDriver pdbbase
## Load record instances
#dbLoadRecords("db/xxx.db","user=_USER_Host")
cd ${TOP}/iocBoot/${IOC}
iocInit()
iocInit
## Start any sequence programs
#seq sncxxx,"user=_USER_Host"
+6 -5
View File
@@ -6,13 +6,14 @@
#< envPaths
## Register all support components
dbLoadDatabase("../../dbd/_APPNAME_.dbd",0,0)
_CSAFEAPPNAME__registerRecordDeviceDriver(pdbbase)
dbLoadDatabase "dbd/_APPNAME_.dbd"
_CSAFEAPPNAME__registerRecordDeviceDriver pdbbase
## Load record instances
dbLoadRecords("../../db/_APPNAME_.db","user=_USER_")
#dbLoadTemplate "db/_APPNAME_.substitutions"
#dbLoadRecords "db/_APPNAME_.db", "user=_USER_"
iocInit()
iocInit
## Start any sequence programs
#seq snc_APPNAME_,"user=_USER_"
#seq sncxxx, "user=_USER_"
@@ -8,22 +8,22 @@
#< ../nfsCommands
cd topbin
## You may have to change _APPNAME_ to something else
## everywhere it appears in this file
ld < _APPNAME_.munch
## Register all support components
cd top
dbLoadDatabase("dbd/_APPNAME_.dbd",0,0)
_CSAFEAPPNAME__registerRecordDeviceDriver(pdbbase)
dbLoadDatabase "dbd/_APPNAME_.dbd"
_CSAFEAPPNAME__registerRecordDeviceDriver pdbbase
## Load record instances
#dbLoadRecords("db/_APPNAME_.db","macro=value")
#dbLoadTemplate("db/_APPNAME_.substitutions")
#dbLoadTemplate "db/_APPNAME_.substitutions"
#dbLoadRecords "db/_APPNAME_.db", "user=_USER_"
cd startup
iocInit()
iocInit
## Start any sequence programs
#seq &sncExample,"user=_USER_"
#seq &sncxxx, "user=_USER_"