diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-20 17:20:32 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-20 17:20:32 +0000 |
| commit | 065b711cbc139cf1de47705e8df56b5bc04e2418 (patch) | |
| tree | a5ee992bb19696f2bdcec762077bd14ef53ec158 /lib/python/Components | |
| parent | 582dd432626828f91c3ebce75c60e7be39be8eb8 (diff) | |
| download | enigma2-065b711cbc139cf1de47705e8df56b5bc04e2418.tar.gz enigma2-065b711cbc139cf1de47705e8df56b5bc04e2418.zip | |
add support for dm8000 onboard tuner linking
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/NimManager.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 5920166d..ec7d46fe 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -105,6 +105,11 @@ class SecConfigure: used_nim_slots = [ ] for slot in nim_slots: + if slot.type is not None: + used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False)) + eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) + + for slot in nim_slots: x = slot.slot nim = slot.config if slot.isCompatible("DVB-S"): @@ -119,11 +124,6 @@ class SecConfigure: self.setSatposDepends(sec, x, int(nim.satposDependsTo.value)) self.satposdepends[int(nim.satposDependsTo.value)]=x - if slot.type is not None: - used_nim_slots.append((slot.slot, slot.description, nim.configMode.value != "nothing" and True or False)) - - eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots) - for slot in nim_slots: x = slot.slot nim = slot.config |
