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 ?
lolly hasn't added any friends yet.
22 August 2012 - 13:34
recipes-linux/linux/linux-etxx00_3.4.3.bb, do_fetch) failed with exit code '1'
14 August 2012 - 02:17
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
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
11 July 2012 - 13:41
config.ParentalControl.configured=true
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()
<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>
10 July 2012 - 13:15
30 June 2012 - 22:36