-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
first refinement round from Fares
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Questions for Nils | ||
|
||
1. Why are there system and user systemd services for twonder and cwonder? Which one should be used? | ||
2. I believe we are using the user services for twonder and cwonder. | ||
3. The jack.service file has After=sound.target local-fs.target, but these targets do not exist on the systems. Why are they there? | ||
4. Where is the include directory path for the config.h file defined? | ||
5. The config.h.in file is is not needed right? | ||
6. All those scripts in the scripts directory are not needed right? Except for the start-twonder.sh script. | ||
7. Where is the Dante pcie driver from? | ||
8. Is pinging really needed for the twonder and cwonder services? And if not, cann't we just go without jfwonder? | ||
9. Do you know what the twonder_config.xml file is for and the the Negative Delay in the cluster configuration? | ||
10. Why shall we need jfwonder? |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# TODO | ||
|
||
- [x] Add runpaths to the final executables | ||
- [ ] Uncomment the saving of old clients | ||
- [ ] Change the default paths of c and t wonder config files |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
message('Installing configuration files for the TU-Studio EN325.') | ||
message('The configuration files are installed to ' + get_option('prefix') + '/' + get_option('sysconfdir') + '.') | ||
|
||
message('This is the node: ' + get_option('node')) | ||
|
||
subdir('wonder') |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This file contains shared information for the WONDER modules | ||
|
||
# USER_NAME='studio'; | ||
|
||
CWONDER_IP='130.149.23.24'; | ||
|
||
NUM_SOURCES=128; | ||
|
||
# Negative delay for focused sources (in meters) | ||
NEG_DELAY=7.585; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# The speaker configurations need to have the same folder structure for the twonder start script to work. | ||
# Also the speaker configurations need to start with twonder. | ||
|
||
if get_option('node') == 'none' | ||
error('Please specify location with -Dnode=...') | ||
elif get_option('node') == 'riviera' | ||
message('Installing configuration for node riviera.') | ||
install_subdir('cwonder', install_dir : get_option('sysconfdir') / 'wonder') | ||
install_subdir('twonder/riviera', strip_directory : true, install_dir : get_option('sysconfdir') / 'wonder' / 'twonder') | ||
elif get_option('node') == 'wintermute' | ||
message('Installing configuration for node wintermute.') | ||
install_subdir('twonder/wintermute', strip_directory : true, install_dir : get_option('sysconfdir') / 'wonder' / 'twonder') | ||
else | ||
error('Unknown node specified.') | ||
endif | ||
|
||
# Install the remaining files if the node is correct, no error is thrown. | ||
install_data('cluster.conf', install_dir : get_option('sysconfdir') / 'wonder') | ||
install_data('twonder/twonder_config.xml', install_dir : get_option('sysconfdir') / 'wonder' / 'twonder') |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.