Jump to content


Raider05

Member Since 17 Dec 2011
Offline Last Active 27 Feb 2020 15:38
-----

Posts I've Made

In Topic: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit

12 May 2017 - 11:18

1455, last merge commit made by me

 

commit 3793ab5be2f64298addf94e54c56e970be6dd267
Author: Littlesat <littlesat99@yahoo.com>
Date:   Mon Apr 28 20:47:16 2014 +0200

    Add "Predefined transponder" option for DVB-T for manual scan

    As suggested by Dima73
    http://openpli.org/f...nder-for-dvb-t/

 


In Topic: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit

6 December 2016 - 10:13

@ahmadrasyidsalim

 

Fix compile the commit

No testing, no free time.


In Topic: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit

19 October 2016 - 09:46

Hi, all.

 

With this commit for me no crash e2pc random when switching channels.

Code:

enigma2/lib/base/filepush.cpp
@@ -340,6 +340,10 @@ void eFilePushThreadRecorder::thread()
 		if (bytes < 0)
 		{
 			bytes = 0;
+			/* Check m_stop after interrupted syscall. */
+			if (m_stop) {
+				break;
+			}
 			if (errno == EINTR || errno == EBUSY || errno == EAGAIN)
 				continue;
 			if (errno == EOVERFLOW)