Soumipoeka on DM600PVR

    • Soumipoeka on DM600PVR

      I tried the soumipoeka plugin (which I use on my 7025) to install on my DM600PVR with newenigma.

      The install failed.

      As I now understand the install files needs another structure in order to install on the 600.
      I wonder if somebody could generate a SUOMIPOEKA version which will install on the DM600PVR.

      This would greatly be appreciated.

      Thanks in advance,

      Willy

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von Dogover ()

    • This is exactly wat I am asking.

      Since Newnigma is Enigma 2 - The suomipoeka plugin should work, provide it is compiled in the PPC architecture. I cannot do it myself (lack of knowledge).

      Since the Newnigma team succeeded in compiling and Enigma2 image in PPC architecture, maybe they can also provide a suomipoeka plugin in PPC.

      (I used the Suomipoeka plugin from the Newnigma feed.)

      Willy

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von Dogover ()

    • Es wäre sehr nett wenn jemand vom Team das plugin suomipoeka für PPC kompilieren würde zumal ja Dumbo schon so nett war das partnerbox plugin für ppc bereitzustellen. Dann wäre meine 600er komplett :winke:

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von paolo ()

    • I do not have the sources, and can not find them on the internet either.

      I tried to contact the writer of the plugin. No succes till now.

      However, I tried the soumipoeka version which is in the download feed for the Newnigma image. (The download page which you reach when you try to install software on the dreambox).

      However the latest mipsel version, can be found here:

      duckfiles.org/board/showthread.php?t=34902

      Willy
    • Hi all,

      As the plugin is written in python the only source code you're missing is for the changerepeat binary. I haven't compiled the binary myself, just received it via a Finnish forum. The source was actually posted on the forum so here it is:

      C-Quellcode

      1. #include <sys/ioctl.h>
      2. #include <linux/input.h>
      3. #include <fcntl.h>
      4. #include <unistd.h>
      5. #include <stdio.h>
      6. #include <stdlib.h>
      7. int main(int argc, char* argv[])
      8. {
      9. struct input_event ie;
      10. int fd;
      11. int fe;
      12. if (argc != 3) {
      13. printf("Usage: changerepeat delay period\n");
      14. exit(1);
      15. }
      16. fd = open("/dev/input/event1", O_RDWR);
      17. fe = open("/dev/input/event2", O_RDWR);
      18. ie.type = EV_REP;
      19. if (*argv[1] != '-') {
      20. ie.code = REP_DELAY;
      21. ie.value = atoi(argv[1]);
      22. write(fd, &ie, sizeof(ie));
      23. write(fe, &ie, sizeof(ie));
      24. }
      25. if (*argv[2] != '-') {
      26. ie.code = REP_PERIOD;
      27. ie.value = atoi(argv[2]);
      28. write(fd, &ie, sizeof(ie));
      29. write(fe, &ie, sizeof(ie));
      30. }
      31. close(fd);
      32. close(fe);
      33. exit(0);
      34. }
      Alles anzeigen