aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/Process.py
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-26 07:48:37 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-26 07:48:37 +0000
commita6dfff23d0d29b636120a3e6fdd845fb2f4117b4 (patch)
tree1108ae4e0f7d4c236d4074a4d10d615d06f8b938 /lib/python/Plugins/Extensions/DVDBurn/Process.py
parent95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c (diff)
downloadenigma2-a6dfff23d0d29b636120a3e6fdd845fb2f4117b4.tar.gz
enigma2-a6dfff23d0d29b636120a3e6fdd845fb2f4117b4.zip
fix mkisofs syntax and fix menu layout so that titles fit on 4:3 pal crt screens
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/Process.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/Process.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/Process.py b/lib/python/Plugins/Extensions/DVDBurn/Process.py
index 5a535e85..0fcbab04 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/Process.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/Process.py
@@ -264,8 +264,9 @@ class BurnTask(Task):
self.postconditions.append(BurnTaskPostcondition())
self.setTool("/bin/growisofs")
volName = self.getASCIIname(job.project.settings.name.getValue())
- self.args += ["-dvd-compat", "-Z", "/dev/cdroms/cdrom0", "-V", volName, "-P", "Dreambox", "-use-the-force-luke=dummy", self.job.workspace + "/dvd"]
+ self.args += [ "-dvd-compat", "-Z", "/dev/cdroms/cdrom0", "-V", volName, "-publisher", "Dreambox", "-use-the-force-luke=dummy" ]
self.args += extra_args
+ self.args += [ self.job.workspace + "/dvd" ]
def getASCIIname(self, name):
ASCIIname = ""