Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
advLigoRTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
CDS
software
advLigoRTS
Commits
3857dc3b
Commit
3857dc3b
authored
3 years ago
by
Ezekiel Dohmen
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into gpstime
parents
6681c24a
703d303d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!439
RCG 5.0 release fro deb 10
,
!300
Adding volatile for memory mapped IO, adding function for kernel space...
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.in
+3
-6
3 additions, 6 deletions
Makefile.in
src/drv/ExtraSymbols.symvers
+0
-1
0 additions, 1 deletion
src/drv/ExtraSymbols.symvers
src/epics/util/lib/createKernelMakefile.pm
+1
-2
1 addition, 2 deletions
src/epics/util/lib/createKernelMakefile.pm
with
4 additions
and
9 deletions
Makefile.in
+
3
−
6
View file @
3857dc3b
...
...
@@ -52,13 +52,10 @@ ifndef RCG_BUILD_NO_KOBJ
# copy IOP symbol file to build area if found
@cp
src/fe/ModuleIOP.symvers
src/fe/$@
>
/dev/null
2>&1
||
/bin/true
@cat
/opt/DIS/lib/modules/$(linux_version)/*.symvers
>
src/fe/$@/Module.symvers
||
/bin/true
# build it
@make
-C
src/fe/$@
>>
$@.log
2>>$@_error.log
||
(tail
$@.log;
cat
$@_error.log
&&
/bin/false)
# save IOP symbol to file
@grep
IOP
src/fe/$@/Module.symvers
>
/tmp/tmp.symvers
@awk
-vOFS
=
'\t'
'{$$3 = "/"; print}'
/tmp/tmp.symvers
>
src/fe/ModuleIOP.symvers
@rm
/tmp/tmp.symvers
# build the FE model
@make
-C
src/fe/$@
>>
$@.log
2>>$@_error.log
||
(tail
$@.log;
cat
$@_error.log
&&
/bin/false)
# save IOP symbol for other models, if we don't already have it
@if
[
!
-f
src/fe/ModuleIOP.symvers
]
;
then
if
grep
IOP
src/fe/$@/Module.symvers
>
/dev/null
;
then
grep
IOP
src/fe/$@/Module.symvers
>
src/fe/ModuleIOP.symvers;
fi;
fi
@$(srcdir)/src/epics/util/checkUndefined.pl
$@_error.log
>>
$@.log
2>>$@_error.log
||
(tail
$@.log;
cat
$@_error.log
&&
/bin/false)
@echo
Done
endif
...
...
This diff is collapsed.
Click to expand it.
src/drv/ExtraSymbols.symvers
deleted
100644 → 0
+
0
−
1
View file @
6681c24a
0x00000000 vprintkl / EXPORT_SYMBOL
This diff is collapsed.
Click to expand it.
src/epics/util/lib/createKernelMakefile.pm
+
1
−
2
View file @
3857dc3b
...
...
@@ -12,8 +12,7 @@ system ("/bin/cp GNUmakefile ../../fe/$::skeleton");
open
(
OUTM
,"
>./
"
.
$fileName
)
||
die
"
cannot open Makefile file for writing
";
print
OUTM
"
# CPU-Shutdown Real Time Linux
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS=$::rcg_src_dir/src/drv/ExtraSymbols.symvers
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS += $::mbufsymfile
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS = $::mbufsymfile
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS += $::gpssymfile
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS += $::cpuisolatorfile
\n
";
print
OUTM
"
KBUILD_EXTRA_SYMBOLS +=
\$
(PWD)/ModuleIOP.symvers
\n
";
...
...
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