targets/toolchain_makefile.py
changeset 538 ad05f27222cd
parent 536 9b77aabf3d36
child 546 093a20ea5ffc
--- a/targets/toolchain_makefile.py	Tue Jun 01 13:08:13 2010 +0200
+++ b/targets/toolchain_makefile.py	Wed Jun 02 10:08:58 2010 +0200
@@ -15,14 +15,9 @@
 
     def SetBuildPath(self, buildpath):
         self.buildpath = buildpath
-        self.exe_path = os.path.join(self.buildpath, "ArmPLC_rom.bin")
-        self.md5_path = os.path.join(self.buildpath, "ArmPLC.md5")
 
     def GetBinaryCode(self):
-        try:
-            return open(self.exe_path, "rb").read()
-        except Exception, e:
-            return None
+        return None
 
     def _GetMD5FileName(self):
         return os.path.join(self.buildpath, "lastbuildPLC.md5")