Difference between revisions of "Startup Info For Developers"

From LinuxMCE
Jump to: navigation, search
m ('''First Steps in making your own device driver''' (WIP))
m ('''First Steps in making your own device driver''' (WIP))
Line 8: Line 8:
 
  2- cd /usr/src
 
  2- cd /usr/src
 
       sudo mkdir lmce
 
       sudo mkdir lmce
       sudo chown linuxmce lmce
+
       sudo chown "youruser" lmce
 
       cd lmce
 
       cd lmce
  

Revision as of 18:52, 16 March 2010

First Steps in making your own device driver (WIP)

1- sudo apt-get install pluto-dcegen
      sudo apt-get install pluto-sql2cpp
      sudo apt-get install build-essential
2- cd /usr/src
      sudo mkdir lmce
      sudo chown "youruser" lmce
      cd lmce
3- svn co http://svn.linuxmce.org/svn/branches/LinuxMCE-810
4- cp /usr/pluto/lib/* /usr/src/lib
5- export SNR_LDFLAGS=" "
      export SNR_CPPFLAGS=" "
6- make

7- Create the template via WebAdmin (add new device?)

8- Sqlcvs update to DCE via WebAdmin

9-  run /usr/pluto/bin/DCEGen -d templatenumber
10-  run /usr/pluto/bin/sql2cpp
11-  cd /src/nameofdevice
12-  make bin
13- cp /src/nameofdevice /usr/pluto/bin

14- Add device via WebAdmin (advanced>configuration>devices)


Thanks to TSCHAKeee2