Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
epics-modules
require
Commits
c3888bad
Commit
c3888bad
authored
19 years ago
by
zimoch
Browse files
Options
Downloads
Patches
Plain Diff
made epicsver compatible to 3.14
parent
f7acefd9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bootNotify.c
+7
-4
7 additions, 4 deletions
bootNotify.c
with
7 additions
and
4 deletions
bootNotify.c
+
7
−
4
View file @
c3888bad
...
...
@@ -5,6 +5,9 @@
* $Author: zimoch $
*
* $Log: bootNotify.c,v $
* Revision 1.3 2006/03/03 13:30:33 zimoch
* made epicsver compatible to 3.14
*
* Revision 1.2 2004/05/24 15:18:58 zimoch
* use ifName()
*
...
...
@@ -30,8 +33,7 @@
#include
<bootInfo.h>
#include
<rsh.h>
#include
<version.h>
extern
char
*
epicsRelease1
;
#include
<epicsVersion.h>
int
bootNotify
(
char
*
script
,
char
*
script2
)
{
...
...
@@ -51,7 +53,8 @@ int bootNotify (char* script, char* script2)
{
sprintf
(
command
,
"%s"
,
script
);
}
sscanf
(
epicsRelease1
,
"@(#)Version R%s"
,
epicsver
);
sprintf
(
epicsver
,
"%d.%d.%d"
,
EPICS_VERSION
,
EPICS_REVISION
,
EPICS_MODIFICATION
);
return
rsh
(
bootHost
(),
command
,
bootInfo
(
"%T %e %n %d %F %s"
),
vxWorksVersion
,
epicsver
,
etherAddr
(
(
char
*
)
ifName
()),
0
);
vxWorksVersion
,
epicsver
,
etherAddr
(
ifName
()),
0
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment