Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Hello,
  2.  
  3. > I will try and get the documentation moved from behind the GENIVI
  4. > member's area into the public.
  5.  
  6. I'll try this week to move some documents to public, but I'd like to
  7. check with David Yates, from the GENIVI system architecture team first.
  8.  
  9. > I am requesting you to provide the procedure(commands to run) to
  10. > compile the test code.
  11.  
  12. The package dependencies you listed are all open source.
  13. You should be able to find most of them in the GENIVI projects:
  14. http://git.projects.genivi.org/
  15.  
  16. The other dependend packages are systemd (provides libsystemd),
  17. glib and dbus, which are also public available.
  18.  
  19. > what is the host system configuration required to compile
  20.  
  21. Everything for the test will be build and installed after:
  22.  
  23. ./autogen.sh
  24. ./configure
  25. make
  26. make install
  27.  
  28. To run the test:
  29.  
  30. Overwrite the "libNodeStateMachine.so" with the test version:
  31. cp /usr/lib/libNodeStateMachine.so /usr/lib/libNodeStateMachine.so_org
  32. cp /usr/lib/libNodeStateMachineTest.so /usr/lib/libNodeStateMachine.so
  33.  
  34. Create an own dbus instance:
  35. dbus-launch
  36.  
  37. The command will print a DBUS_SESSION_BUS_ADDRESS. Copy/paste and
  38. export it as system bus:
  39. export DBUS_SYSTEM_BUS_ADDRESS=unix:path=...
  40.  
  41. Start the NodeStateManager (in background)
  42. NodeStateManager &
  43.  
  44. Run the test:
  45. NodeStateTest
  46.  
  47. Kind regards
  48. Jean-Pierre
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement