diff options
| -rw-r--r-- | etc/Makefile.am | 7 | ||||
| -rw-r--r-- | etc/miav.conf | 22 | 
2 files changed, 29 insertions, 0 deletions
| diff --git a/etc/Makefile.am b/etc/Makefile.am new file mode 100644 index 0000000..e149dab --- /dev/null +++ b/etc/Makefile.am @@ -0,0 +1,7 @@ +EXTRA_DIST = \ +	miav.conf + +sysconfdir=${prefix}/etc/miav + +dist_sysconf_DATA = \ +	miav.conf
\ No newline at end of file diff --git a/etc/miav.conf b/etc/miav.conf new file mode 100644 index 0000000..aa85797 --- /dev/null +++ b/etc/miav.conf @@ -0,0 +1,22 @@ +# +# The MIaV configuration file +# + +# Cpr Database configuration +cpr_host	= "cpr.j.auh.dk" +cpr_port	= 10301 +cpr_timeout	= 10000 + +# Video source +video_width	= 720 +video_height	= 576 + +# Size of the screen in inches +screensize	= 19.0 +pixel_width	= 1024 +pixel_height	= 768 + +# How and where to connect to the miav server? +server_addr	= "192.168.0.10" +server_port	= 30000 + | 
