From 65efcb9d542de70854e33520ddd0d9838632a0e6 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Sun, 12 Jul 2009 19:00:14 +0200 Subject: include cstdio to fix build with gcc 4.4 --- lib/base/encoding.cpp | 1 + lib/base/rawfile.cpp | 1 + 2 files changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/base/encoding.cpp b/lib/base/encoding.cpp index 6a997cf1..831de847 100644 --- a/lib/base/encoding.cpp +++ b/lib/base/encoding.cpp @@ -1,3 +1,4 @@ +#include #include #include #include diff --git a/lib/base/rawfile.cpp b/lib/base/rawfile.cpp index e444ba90..d7f2a655 100644 --- a/lib/base/rawfile.cpp +++ b/lib/base/rawfile.cpp @@ -1,3 +1,4 @@ +#include #include #include #include -- cgit v1.2.3 From c1d2b4c1896fc58681e1a7e718e97b08e03a5b5c Mon Sep 17 00:00:00 2001 From: Fraxinas Date: Mon, 13 Jul 2009 11:39:24 +0200 Subject: try deleting 4 primary partitions before creating new partition table --- lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py index 6d404cf2..6292a46f 100644 --- a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py +++ b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py @@ -494,7 +494,7 @@ class NFIDownload(Screen): self.taskstring = "" self.container.appClosed.append(self.fdisk_finished) self.container.execute("fdisk " + self.stickdevice + "/disc") - self.container.write("d\nn\np\n1\n\n\nt\n6\nw\n") + self.container.write("d\n4\nd\n3\nd\n2\nd\nn\np\n1\n\n\nt\n6\nw\n") self.delayTimer = eTimer() self.delayTimer.callback.append(self.progress_increment) self.delayTimer.start(105, False) -- cgit v1.2.3