-
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.
- Loading branch information
Showing
20 changed files
with
102 additions
and
211 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
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule ibek-support
updated
17 files
+4 −1 | _global/install.sh | |
+1 −1 | asyn/install.sh | |
+1 −1 | busy/install.sh | |
+1 −1 | calc/install.sh | |
+1 −1 | iocStats/install.sh | |
+1 −1 | ipac/install.sh | |
+1 −1 | lakeshore340/install.sh | |
+1 −1 | motor/install.sh | |
+30 −0 | positioner/install.sh | |
+427 −0 | positioner/positioner.ibek.support.yaml | |
+606 −0 | quadEM/drvTetrAMM.pvi.device.yaml | |
+3 −0 | quadEM/make_pvi.sh | |
+42 −25 | quadEM/quadem.ibek.support.yaml | |
+1 −1 | sequencer/install.sh | |
+36 −0 | snmp/install.sh | |
+27 −0 | terminalserver/install.sh | |
+113 −0 | terminalserver/terminalserver.ibek.support.yaml |
Empty file.
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,49 @@ | ||
#!/bin/bash | ||
|
||
# A launcher for the phoebus to view the generated OPIs | ||
|
||
thisdir=$(realpath $(dirname $0)) | ||
workspace=$(realpath ${thisdir}/..) | ||
|
||
settings=" | ||
-resource ${workspace}/opi/auto-generated/index.bob | ||
-settings ${workspace}/opi/settings.ini | ||
" | ||
|
||
if which phoebus.sh &>/dev/null ; then | ||
echo "Using phoebus.sh from PATH" | ||
set -x | ||
phoebus.sh ${settings} "${@}" | ||
|
||
elif module load phoebus 2>/dev/null; then | ||
echo "Using phoebus module" | ||
set -x | ||
phoebus.sh ${settings} "${@}" | ||
|
||
else | ||
echo "No local phoebus install found, using a container" | ||
|
||
if podman version &> /dev/null && [[ -z $USE_DOCKER ]] ; | ||
then docker=podman | ||
else docker=docker | ||
fi | ||
echo "Using $docker as container runtime" | ||
|
||
# ensure local container users can access X11 server | ||
xhost +SI:localuser:$(id -un) | ||
|
||
# settings for container launch | ||
x11="-e DISPLAY --net host" | ||
args=$"--rm -it --security-opt=label=none" | ||
mounts="-v=/tmp:/tmp -v=${workspace}:/workspace" | ||
image="ghcr.io/epics-containers/ec-phoebus:latest" | ||
|
||
settings=" | ||
-settings /workspace/opi/settings.ini | ||
-resource /workspace/opi/auto-generated/index.bob | ||
" | ||
|
||
set -x | ||
$docker run ${mounts} ${args} ${x11} ${image} ${settings} "${@}" | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# point at local host for channel access | ||
org.phoebus.pv.ca/addr_list=127.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ibek==3.0.1 | ||
ibek==3.1.0 | ||
# to install direct from github during development in a branch | ||
# git+https://github.com/epics-containers/ibek.git@fix-extract-assets |
Oops, something went wrong.