split device servers

This commit is contained in:
Grzegorz Kowalski 2022-09-28 21:48:49 +02:00
parent 1407ae0096
commit 8c8dbb8d9f
24 changed files with 389 additions and 339 deletions

View File

@ -1,4 +1,5 @@
triggers.mc.source TriggersMcSource 14 9 1
triggers.t0.source TriggersT0Source 14 9 1
triggers.t1.source TriggersT1Source 14 9 1
triggers.t2.source T2TrigSource 14 9 1
pll.locked McLocked 2 1 1
@ -15,3 +16,12 @@ rtc.mc.in_mask RtcMcInMask 526 3 16 4
rtc.mc.in_function RtcMcInFunction 526 3 16 4
rtc.mc.code RtcMcCode 526 3 16 4
sfp_freq SfpLinkFreq 10 3 1
events.mc.timestamp McTimestamp 2 5 1
events.mc.count McTrigCount 6 5 1
events.t0.timestamp T0Timestamp 2 5 1
events.t0.count T0TrigCount 6 5 1
events.t1.timestamp T1Timestamp 2 5 1
events.t1.count T1TrigCount 6 5 1
events.t2.timestamp T2Timestamp 2 5 1
events.t2.count T2TrigCount 6 5 1

View File

@ -1 +0,0 @@
ebpm-top

View File

@ -1 +0,0 @@
ebpm-listen

View File

@ -1,4 +0,0 @@
app-ebpm application.
board-gdx boards.gdx1. Gdx
board-evrx boards.evrx2. EvRx
board-raf $INSTANCE

View File

@ -0,0 +1,4 @@
app-ebpm application.
board-evrx $INSTANCE
pm-evrx $INSTANCE
pm-fans fans. Fans

View File

@ -0,0 +1,2 @@
board-gdx $INSTANCE
pm-gdx $INSTANCE

View File

@ -1 +0,0 @@
ebpm-pm

View File

@ -0,0 +1,4 @@
pm-fans fans. Fans
pm-evrx $INSTANCE Evrx
pm-gdx $INSTANCE Gdx
pm-raf $INSTANCE Bpm

View File

@ -1 +0,0 @@
ebpm-pm-listen

View File

@ -0,0 +1,2 @@
board-raf $INSTANCE
pm-raf $INSTANCE

View File

@ -0,0 +1 @@
libera-ds

View File

@ -0,0 +1 @@
libera-ds

View File

@ -0,0 +1 @@
libera-ds

11
opt/solaris/bin/libera-ds-evrx Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
CFGPATH="/opt/libera/sbin/cfg/tango"
DSTOP="ds-top"
echo "libera-ds/evrx"
[ -e $CFGPATH/$DSTOP ] && rm $CFGPATH/$DSTOP
ln -s $CFGPATH/evrx-top $CFGPATH/$DSTOP
/opt/libera/sbin/libera-ds-evrx $@

11
opt/solaris/bin/libera-ds-gdx Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
CFGPATH="/opt/libera/sbin/cfg/tango"
DSTOP="ds-top"
echo "libera-ds/gdx"
[ -e $CFGPATH/$DSTOP ] && rm $CFGPATH/$DSTOP
ln -s $CFGPATH/gdx-top $CFGPATH/$DSTOP
/opt/libera/sbin/libera-ds-gdx $@

11
opt/solaris/bin/libera-ds-raf Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
CFGPATH="/opt/libera/sbin/cfg/tango"
DSTOP="ds-top"
echo "libera-ds/raf"
[ -e $CFGPATH/$DSTOP ] && rm $CFGPATH/$DSTOP
ln -s $CFGPATH/raf-top $CFGPATH/$DSTOP
/opt/libera/sbin/libera-ds-raf $@