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
c84fa4f8
Commit
c84fa4f8
authored
3 years ago
by
Erik von Reis
Browse files
Options
Downloads
Patches
Plain Diff
rtcds: build and install can no longer run from 'root'
parent
966693e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!274
rtcds improvements
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
support/bin/rtcds.in
+8
-0
8 additions, 0 deletions
support/bin/rtcds.in
with
9 additions
and
0 deletions
NEWS
+
1
−
0
View file @
c84fa4f8
...
...
@@ -4,6 +4,7 @@ Changes for NEXT
- Fixed bug in ADC read when IOP rate was slower than ADC rate.
- Fixed virtualIOP parameter. Virtual IOPs now build and run.
- Fixed bug that leads to incorrect ordering of calculations, adding unneeded latency.
- 'rtcds restart --all' fixed to also restart IOP model.
==================================================================================================
Changes for 4.2.3
==================================================================================================
...
...
This diff is collapsed.
Click to expand it.
support/bin/rtcds.in
+
8
−
0
View file @
c84fa4f8
...
...
@@ -593,6 +593,10 @@ fi
case
$cmd
in
'build'
|
'make'
)
if
[
"
$EUID
"
-eq
0
]
;
then
log
"*** Error: building as 'root' not allowed"
exit
2
fi
if
[[
-n
$ALL_FLAG
]]
;
then
check_env
prep_buildd
...
...
@@ -607,6 +611,10 @@ case $cmd in
fi
;;
'install'
)
if
[
"
$EUID
"
-eq
0
]
;
then
log
"*** Error: Installing as 'root' not allowed"
exit
2
fi
if
[[
-n
$ALL_FLAG
]]
;
then
check_env
prep_target
...
...
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