diff -r 881c0b3f0204 -r ad05f27222cd targets/toolchain_makefile.py --- 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")