diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-22 13:51:57 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-22 13:51:57 +0000 |
commit | 627acfbc0119485c4b1e1a224b8e85916c9e5507 (patch) | |
tree | 57297ab9d82e79d1a3163297df0ba77f51ff5ef3 | |
parent | a1bfc9d4eda6220a82aab1ceb0d17d33e51d264b (diff) | |
download | librebootfr-627acfbc0119485c4b1e1a224b8e85916c9e5507.tar.gz librebootfr-627acfbc0119485c4b1e1a224b8e85916c9e5507.zip |
ich9deblob: instruct the user how to modify their ROM image
-rw-r--r-- | resources/utilities/ich9deblob/ich9deblob.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/utilities/ich9deblob/ich9deblob.c b/resources/utilities/ich9deblob/ich9deblob.c index 9e8ee97a..fb96839b 100644 --- a/resources/utilities/ich9deblob/ich9deblob.c +++ b/resources/utilities/ich9deblob/ich9deblob.c @@ -316,6 +316,9 @@ int main(int argc, char *argv[]) gbeChecksum = deblobbedGbeStruct8k.backup.checkSum; // for the libreboot.rom image printf("deblobbed Gbe (backup) calculated Gbe checksum: 0x%hx and actual GBe checksum: 0x%hx\n", gbeCalculatedChecksum, gbeChecksum); + printf("\nNow do: dd if=deblobbed_descriptor.bin of=libreboot.rom bs=1 count=12k conv=notrunc"); + printf("\n(in other words, add the modified descriptor+gbe to your ROM image)\n"); + return 0; } |