Commit 72de1d67 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Added config file for dummy display.

parent 49e03ed7
...@@ -54,6 +54,7 @@ openPOWERLINK-V1.08.2 Ethernet Powerlink zip-file. Build from sources. ...@@ -54,6 +54,7 @@ openPOWERLINK-V1.08.2 Ethernet Powerlink zip-file. Build from sources.
libpcap-dev Ethernet Powerlink libpcap-dev Ethernet Powerlink
There has to be a valid display when building proview. There has to be a valid display when building proview.
If you do not have a display, or want to build Proview on a server, see section "Building without a display" below
2. Easy way 2. Easy way
----------- -----------
...@@ -217,6 +218,8 @@ source $pwra_db/pwr_setup.sh ...@@ -217,6 +218,8 @@ source $pwra_db/pwr_setup.sh
Voila, finished ! Voila, finished !
Powerlink (optional) Powerlink (optional)
-------------------- --------------------
Install Install
...@@ -235,6 +238,8 @@ openPOWERLINK-V1.08.2/buildcn ...@@ -235,6 +238,8 @@ openPOWERLINK-V1.08.2/buildcn
Configure and generate MN with cmake-gui from openPOWERLINK-V1.08.2/build, and build with make Configure and generate MN with cmake-gui from openPOWERLINK-V1.08.2/build, and build with make
Configure and generate CN with cmake-gui from openPOWERLINK-V1.08.2/buildcn, and build with make Configure and generate CN with cmake-gui from openPOWERLINK-V1.08.2/buildcn, and build with make
Building Motif version Building Motif version
---------------------- ----------------------
If someone for some unfathomable reason wants to build the old motif version If someone for some unfathomable reason wants to build the old motif version
...@@ -259,6 +264,7 @@ Start wb and motif with ...@@ -259,6 +264,7 @@ Start wb and motif with
> rt_xtt_motif > rt_xtt_motif
Build on FreeBSD Build on FreeBSD
---------------- ----------------
...@@ -281,6 +287,7 @@ Increase the default value of kern.ipc.shmmax to 67108864. Add the following row ...@@ -281,6 +287,7 @@ Increase the default value of kern.ipc.shmmax to 67108864. Add the following row
kern.ipc.shmmax=67108864 kern.ipc.shmmax=67108864
Build on Mac OS X 1.6 Build on Mac OS X 1.6
--------------------- ---------------------
...@@ -305,3 +312,20 @@ kern.sysv.shmseg=16 ...@@ -305,3 +312,20 @@ kern.sysv.shmseg=16
kern.sysv.shmall=65536 kern.sysv.shmall=65536
Building without a display
--------------------------
Install the xserver-xorg-video-dummy package:
> apt-get install xserver-xorg-video-dummy
Start the dummy display with:
> Xorg -noreset +extension GLX +extension RANDR +extension RENDER -config src/tools/dummy_display/xorg.conf :99 &
Set the DISPLAY environment variable accordingly:
> export DISPLAY=:99
Build proview as normal, either by executing the makefile:
> make
or by configuring the build yourself, see section "3. Thorough way" above.
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment