summaryrefslogtreecommitdiff
path: root/BeagleBoardPkg/Tools
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-22 23:25:39 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-22 23:25:39 +0000
commit0641c5405cf66979307fb20d19f94bbd8424d341 (patch)
tree1b89464a886da735588b12ce1372441f5e4d9985 /BeagleBoardPkg/Tools
parent3d15d6c42408b8ad6966120a58665abb2657df4b (diff)
downloadedk2-0641c5405cf66979307fb20d19f94bbd8424d341.zip
edk2-0641c5405cf66979307fb20d19f94bbd8424d341.tar.gz
edk2-0641c5405cf66979307fb20d19f94bbd8424d341.tar.bz2
BeagleBoardPkg: The FDF file does not reserve any more the area for the OMAP35xxx header
It is the tool BeagleBoardPkg/Tools/generate_image which will add a CH header to a the BeagleBoard FD file. The build macro EDK2_SECOND_STAGE_BOOTOLADER is not required any more. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12433 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BeagleBoardPkg/Tools')
-rw-r--r--BeagleBoardPkg/Tools/generate_image.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/BeagleBoardPkg/Tools/generate_image.c b/BeagleBoardPkg/Tools/generate_image.c
index 6ac9268..fa4cdcc 100644
--- a/BeagleBoardPkg/Tools/generate_image.c
+++ b/BeagleBoardPkg/Tools/generate_image.c
@@ -316,7 +316,6 @@ ConstructImage (
FILE *InputFile;
FILE *OutputFile;
unsigned int InputImageFileSize;
- unsigned int NewImageFileSize;
struct stat FileStat;
char Ch;
unsigned int i;
@@ -327,31 +326,25 @@ ConstructImage (
exit(0);
}
- //Get the size of the input image.
+ // Get the size of the input image.
fstat(fileno(InputFile), &FileStat);
InputImageFileSize = FileStat.st_size;
- //Calculate new file size
- NewImageFileSize = InputImageFileSize - 520;
-
OutputFile = fopen(gOutputImageFile, "wb");
if (OutputFile == NULL) {
fprintf(stderr, "Can't open output file %s.\n", gOutputImageFile);
exit(0);
}
- //Write Configuration header
+ // Write Configuration header
fwrite(gConfigurationHeader, 1, sizeof(gConfigurationHeader), OutputFile);
- //Write image header (Input image size, execution address)
- fwrite(&NewImageFileSize, 1, 4, OutputFile);
+ // Write image header (Input image size, execution address)
+ fwrite(&InputImageFileSize, 1, 4, OutputFile);
fwrite(&gImageExecutionAddress, 1, 4, OutputFile);
- //Skip first 0x207 bytes
- fseek(InputFile, 520, SEEK_SET);
-
- //Copy input image to the output file.
- for (i = 0; i < NewImageFileSize; i++) {
+ // Copy input image to the output file.
+ for (i = 0; i < InputImageFileSize; i++) {
fread(&Ch, 1, 1, InputFile);
fwrite(&Ch, 1, 1, OutputFile);
}