aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/Process.py
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:47:03 +0100
commit1b586ab3e622c38f22280ad21d2cd5a08c4424b9 (patch)
treebfb43e0134c6d08db3190b3296228533f2b323d4 /lib/python/Plugins/Extensions/DVDBurn/Process.py
parent0a9c12b0d928a0d4837046830a253fef966ef672 (diff)
downloadenigma2-1b586ab3e622c38f22280ad21d2cd5a08c4424b9.tar.gz
enigma2-1b586ab3e622c38f22280ad21d2cd5a08c4424b9.zip
actually burn and not just simulate burning to dvd-MINUS-r(w) media
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/Process.py')
-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)