mirror of https://github.com/acidanthera/audk.git
Add check when copy flashMap.h to ${ModuleOutputDir}/Debug/TianoR8FlashMap.h.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1065 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f9d0ab9266
commit
31a9215c32
|
@ -2060,21 +2060,25 @@ public class AutoGen {
|
|||
int size = (int)inFile.length();
|
||||
byte[] buffer = new byte[size];
|
||||
File outFile = new File (this.outputPath + File.separatorChar + CommonDefinition.tianoR8FlashMapH);
|
||||
try{
|
||||
if (inFile.exists()) {
|
||||
FileInputStream fis = new FileInputStream (inFile);
|
||||
fis.read(buffer);
|
||||
FileOutputStream fos = new FileOutputStream(outFile);
|
||||
fos.write(buffer);
|
||||
fis.close();
|
||||
fos.close();
|
||||
}else {
|
||||
throw new AutoGenException("The flashMap.h file don't exist!!");
|
||||
//
|
||||
// If TianoR8FlashMap.h existed and the flashMap.h don't change,
|
||||
// do nothing.
|
||||
//
|
||||
if ((!outFile.exists()) ||(inFile.lastModified() - outFile.lastModified()) >= 0) {
|
||||
try{
|
||||
if (inFile.exists()) {
|
||||
FileInputStream fis = new FileInputStream (inFile);
|
||||
fis.read(buffer);
|
||||
FileOutputStream fos = new FileOutputStream(outFile);
|
||||
fos.write(buffer);
|
||||
fis.close();
|
||||
fos.close();
|
||||
}else {
|
||||
throw new AutoGenException("The flashMap.h file don't exist!!");
|
||||
}
|
||||
} catch (Exception e){
|
||||
throw new AutoGenException(e.getMessage());
|
||||
}
|
||||
} catch (Exception e){
|
||||
throw new AutoGenException(e.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue