aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-10-31 14:11:59 +0100
committerAndreas Oberritter <obi@saftware.de>2008-11-06 01:52:04 +0100
commit95f74bb07093569c7996b331efa189a1d115eefe (patch)
treeca3f1df1567e7301805fffdf5ea59a1fe3449e88 /lib/python
parentde868496fdbc0dc65d961d7404bfd7af827e045f (diff)
downloadenigma2-95f74bb07093569c7996b331efa189a1d115eefe.tar.gz
enigma2-95f74bb07093569c7996b331efa189a1d115eefe.zip
actually burn and not just simulate burning to dvd-MINUS-r(w) media
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index b8a3788e..1cc11e2d 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -701,7 +701,7 @@ class DVDJob(Job):
if output == "dvd":
self.name = _("Burn DVD")
tool = "/bin/growisofs"
- burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat", "-use-the-force-luke=dummy" ]
+ burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat" ]
elif output == "iso":
self.name = _("Create DVD-ISO")
tool = "/usr/bin/mkisofs"
@@ -739,7 +739,7 @@ class DVDdataJob(Job):
tool = "/bin/growisofs"
if output == "dvd":
self.name = _("Burn DVD")
- burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat", "-use-the-force-luke=dummy" ]
+ burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat" ]
elif output == "iso":
tool = "/usr/bin/mkisofs"
self.name = _("Create DVD-ISO")
@@ -762,11 +762,11 @@ class DVDisoJob(Job):
self.menupreview = False
if imagepath.endswith(".iso"):
PreviewTask(self, imagepath)
- burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD() + '='+imagepath, "-dvd-compat", "-use-the-force-luke=dummy" ]
+ burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD() + '='+imagepath, "-dvd-compat" ]
else:
PreviewTask(self, imagepath + "/VIDEO_TS/")
volName = self.project.settings.name.getValue()
- burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat", "-use-the-force-luke=dummy" ]
+ burnargs = [ "-Z", "/dev/" + harddiskmanager.getCD(), "-dvd-compat" ]
burnargs += [ "-dvd-video", "-publisher", "Dreambox", "-V", volName, imagepath ]
tool = "/bin/growisofs"
BurnTask(self, burnargs, tool)