diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-03 16:48:20 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-03 16:48:20 +0100 |
commit | 438cc1fe58f4b65099d778596b93e8094594cb69 (patch) | |
tree | 64f15e7b5e970341799fae6f3de103301dfde452 /resources/utilities/ich9deblob/src/common | |
parent | 2350f55533902f9f67b50a920fad2044daec03ac (diff) | |
download | librebootfr-438cc1fe58f4b65099d778596b93e8094594cb69.tar.gz librebootfr-438cc1fe58f4b65099d778596b93e8094594cb69.zip |
demefactory (new utility): create GM45 factory.rom without the ME
Diffstat (limited to 'resources/utilities/ich9deblob/src/common')
-rw-r--r-- | resources/utilities/ich9deblob/src/common/descriptor_gbe.c | 30 | ||||
-rw-r--r-- | resources/utilities/ich9deblob/src/common/descriptor_gbe.h | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/resources/utilities/ich9deblob/src/common/descriptor_gbe.c b/resources/utilities/ich9deblob/src/common/descriptor_gbe.c index 6a874523..31cca1b1 100644 --- a/resources/utilities/ich9deblob/src/common/descriptor_gbe.c +++ b/resources/utilities/ich9deblob/src/common/descriptor_gbe.c @@ -58,3 +58,33 @@ int notCreatedDescriptorGbeFile(struct DESCRIPTORREGIONRECORD descriptorStruct, return 0; } + +/* + * create 4KiB file with descriptor + */ +int notCreated4kDescriptorFile(struct DESCRIPTORREGIONRECORD descriptorStruct, char* fileName) +{ + FILE* fileStream = NULL; + + /* delete old file before continuing */ + remove(fileName); + + /* open new file for writing the descriptor+gbe */ + fileStream = fopen(fileName, "ab"); + + /* write the descriptor region into the first part */ + if (DESCRIPTORREGIONSIZE != fwrite((uint8_t*)&descriptorStruct, 1, sizeof(descriptorStruct), fileStream)) + { + printf("\nerror: writing descriptor region failed\n"); + return 1; + } + + + fclose(fileStream); + + printf("descriptor successfully written to the file: %s\n", fileName); + printf("Now do: dd if=%s of=yourrom.rom bs=1 count=4k conv=notrunc\n", fileName); + printf("(in other words, add the modified descriptor to your ROM image)\n\n"); + + return 0; +} diff --git a/resources/utilities/ich9deblob/src/common/descriptor_gbe.h b/resources/utilities/ich9deblob/src/common/descriptor_gbe.h index d3e8977e..94d4a24f 100644 --- a/resources/utilities/ich9deblob/src/common/descriptor_gbe.h +++ b/resources/utilities/ich9deblob/src/common/descriptor_gbe.h @@ -32,5 +32,6 @@ #include "../gbe/gbe.h" /* structs describing what's in the gbe region */ int notCreatedDescriptorGbeFile(struct DESCRIPTORREGIONRECORD descriptorStruct, struct GBEREGIONRECORD_8K gbeStruct8k, char* fileName); +int notCreated4kDescriptorFile(struct DESCRIPTORREGIONRECORD descriptorStruct, char* fileName); #endif |