Springen naar inhoud


lolly

Lid geworden: 20 nov 2011
Offline Laatste activiteit: 23 apr 2015 14:38
-----

Onderwerpen die ik ben begonnen

Compile Error linux-etxx00_3.4.3

22 augustus 2012 - 13:34

After some Errors in my cloned git have i delete the source and Image Folders to start a complete clean build.


All Images build pefect, only by the et images comes an fetch error

recipes-linux/linux/linux-etxx00_3.4.3.bb, do_fetch)  failed with exit code '1'

But the linux-3.4.3.tar.gz is in the /sources Folder ?

Packages.gz

14 augustus 2012 - 02:17

Can someone help me...

Where will the packages.gz generated?

I will make a change for my interests in the Description: Part

from...
Package: kernel-module-rtl8192c-common
Version: 3.1.1-r4.1.10
Depends: update-modules, kernel-3.1.1, kernel-module-mac80211
Section: kernel
Architecture: vuultimo
Maintainer: OE-Core Developers <openembedded-core@lists.openembedded.org>
MD5Sum: 8bb35626e35056dfcac9cc55ce42f6f5
Size: 32672
Filename: kernel-module-rtl8192c-common_3.1.1-r4.1.10_vuultimo.ipk
Source: http://archive.vuplus.com/download/kernel/linux-3.1.1_r2.tar.bz2 file://fix_cpu_proc.patch;striplevel=1 file://iosched-slice_idle-1.patch file://dvb-usb-smsdvb_fix_frontend.patch file://vuultimo_defconfig file://linux-sata_brcm.patch;striplevel=1
Description: linux-vuultimo version 3.1.1-r4.1.10
rtl8192c-common kernel module; Realtek 8192C/8188C 802.11n PCI wireless
OE: linux-vuultimo
HomePage: unknown
License: GPL
Priority: optional

to...
Package: kernel-module-rtl8192c-common
Version: 3.1.1-r4.1.10
Depends: update-modules, kernel-3.1.1, kernel-module-mac80211
Section: kernel
Architecture: vuultimo
Maintainer: OE-Core Developers <openembedded-core@lists.openembedded.org>
MD5Sum: 8bb35626e35056dfcac9cc55ce42f6f5
Size: 32672
Filename: kernel-module-rtl8192c-common_3.1.1-r4.1.10_vuultimo.ipk
Source: http://archive.vuplus.com/download/kernel/linux-3.1.1_r2.tar.bz2 file://fix_cpu_proc.patch;striplevel=1 file://iosched-slice_idle-1.patch file://dvb-usb-smsdvb_fix_frontend.patch file://vuultimo_defconfig file://linux-sata_brcm.patch;striplevel=1
Description: rtl8192c-common kernel module; Realtek 8192C/8188C 802.11n PCI wireless - linux-vuultimo version 3.1.1-r4.1.10
OE: linux-vuultimo
HomePage: unknown
License: GPL
Priority: optional

Parental Controll activated?

11 juli 2012 - 13:41

@ the Startwizard have i chosen no Parental Control but is activated....

In /etc/enigma2/settings

config.ParentalControl.configured=true

In ParentalControl.py

def InitParentalControl():
global parentalControl
parentalControl = ParentalControl()
config.ParentalControl = ConfigSubsection()
config.ParentalControl.configured = ConfigYesNo(default = False)
config.ParentalControl.mode = ConfigSelection(default = "simple", choices = [("simple", _("simple")), ("complex", _("complex"))])
config.ParentalControl.storeservicepin = ConfigSelection(default = "never", choices = [("never", _("never")), ("5", _("%d minutes") % 5), ("30", _("%d minutes") % 30), ("60", _("%d minutes") % 60), ("standby", _("until standby/restart"))])
config.ParentalControl.servicepinactive = ConfigYesNo(default = False)
config.ParentalControl.setuppinactive = ConfigYesNo(default = False)
config.ParentalControl.type = ConfigSelection(default = "blacklist", choices = [(LIST_WHITELIST, _("whitelist")), (LIST_BLACKLIST, _("blacklist"))])
config.ParentalControl.setuppin = ConfigPIN(default = -1)
config.ParentalControl.retries = ConfigSubsection()
config.ParentalControl.retries.setuppin = ConfigSubsection()
config.ParentalControl.retries.setuppin.tries = ConfigInteger(default = 3)
config.ParentalControl.retries.setuppin.time = ConfigInteger(default = 3)
config.ParentalControl.retries.servicepin = ConfigSubsection()
config.ParentalControl.retries.servicepin.tries = ConfigInteger(default = 3)
config.ParentalControl.retries.servicepin.time = ConfigInteger(default = 3)
config.ParentalControl.servicepin = ConfigSubList()

In Starwizard.xml

  <step id="finisheddefaultsatlists">
   <text value="Do you want to enable the parental control feature on your dreambox?" />
   <list>
	<listentry caption="No" step="end" />
	<listentry caption="Yes" step="parentalsetup" />
   </list>
   <code pos="after">
if self["list"].index == 0:
config.ParentalControl.configured.value = True
else:
config.ParentalControl.configured.value = False
config.ParentalControl.configured.save()
   </code>
  </step>
  <step id="parentalsetup">
   <text value="You need to set a PIN code and hide it from your children.\n\nDo you want to set the pin now?" />
   <list>
	<listentry caption="Yes" step="finishparentalsetup" />
	<listentry caption="No" step="warnpin" />
   </list>
   <code pos="after">
from ParentalControlSetup import ParentalControlChangePin
if self["list"].index == 0:
self.session.open(ParentalControlChangePin, config.ParentalControl.servicepin[0], _("parental control pin"))
   </code>
  </step>
  <step id="warnpin">
   <text value="Please be aware, that anyone can disable the parental control, if you have not set a PIN." />
  </step>
  <step id="finishparentalsetup">
   <code>
if config.ParentalControl.setuppin.value == "aaaa":
config.ParentalControl.setuppinactive.value = False
else:
config.ParentalControl.setuppinactive.value = True
config.ParentalControl.setuppinactive.save()
config.ParentalControl.servicepinactive.value = True
config.ParentalControl.servicepinactive.save()
config.ParentalControl.setuppin.value = config.ParentalControl.servicepin[0].value
config.ParentalControl.setuppin.save()
   </code>

Have i overseen some things?

Progressbar Channel Selection

10 juli 2012 - 13:15

How can I move the progress bar in the channel selection?

Is this in the python or C++ Code?

linux-3.3.0.tar.gz

30 juni 2012 - 22:36

Can someone upload linux-3.3.0.tar.gz for me?

I have cleaned my sources Folder and

http://www.et-view.c...ux-3.3.0.tar.gz

is not online @the moment.