-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from epics-containers/template
Add RTEMS support
- Loading branch information
Showing
20 changed files
with
96 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: 3.2.0b3 | ||
_src_path: gh:epics-containers/ioc-template | ||
description: Generic IOC for the Delta Tau turbo pmac and power pmac motion controllers | ||
git_platform: github.com | ||
github_org: epics-containers | ||
name: ioc-pmac | ||
repo_uri: [email protected]:epics-containers/ioc-pmac.git |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# make sure all the files we mount into the container exist | ||
for i in \ | ||
.bash_eternal_history \ | ||
.bashrc_dev_container \ | ||
.bashprofile_dev_container \ | ||
.inputrc | ||
do | ||
if [ ! -f $HOME/$i ] ; then | ||
touch $HOME/$i; | ||
fi | ||
done | ||
# custom initialization goes here - runs outside of the dev container | ||
# just before the container is launched but after the container is created | ||
|
||
echo "devcontainerID ${1}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
An epics-containers generic IOC source file for Delta Tau pmac motion controllers. | ||
# Generic IOC Template Repository ioc-pmac | ||
|
||
Generates a Generic IOC for running in a container and | ||
creating IOC instances to control pmac motion controllers. | ||
## Description | ||
Generic IOC for the Delta Tau turbo pmac and power pmac motion controllers | ||
|
||
See the https://epics-containers.github.io | ||
## Template Info | ||
This repository was generated by | ||
[ioc-template](https://github.com/epics-containers/ioc-template) | ||
|
||
To update to the latest version of the template: | ||
|
||
```bash | ||
# activate a python virtual environment | ||
|
||
pip install copier | ||
cd ioc-pmac | ||
copier update -A --trust . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ibek-support
updated
41 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# CONFIG_SITE | ||
|
||
CROSS_COMPILER_TARGET_ARCHS = | ||
CHECK_RELEASE = NO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
# global install script for support all support modules to reference | ||
|
||
x86_cfg='./configure/CONFIG_SITE.Common.linux-x86_64' | ||
|
||
# for RTEMS builds don't build for the host architecture, target only | ||
if [[ $TARGET_ARCHITECTURE == "rtems" ]]; then | ||
touch ${x86_cfg} | ||
sed -i '/VALID_BUILDS/d' ${x86_cfg} | ||
echo "VALID_BUILDS=Host" >> ${x86_cfg} | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.