diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-23 16:44:59 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-23 16:44:59 +0000 |
commit | ece2f6f796afa94dbc927e9c4f514a3e131c7897 (patch) | |
tree | d67d046304731ed95b62b33e6ebc6f55e9d8340b /resources/utilities | |
parent | 2fa1721ab9338c8f72c6b9ee390ed11ced4c2e15 (diff) | |
download | librebootfr-ece2f6f796afa94dbc927e9c4f514a3e131c7897.tar.gz librebootfr-ece2f6f796afa94dbc927e9c4f514a3e131c7897.zip |
ich9deblob: rename descriptor/struct.h to descriptor/descriptor.h
Diffstat (limited to 'resources/utilities')
-rw-r--r-- | resources/utilities/ich9deblob/Makefile | 4 | ||||
-rw-r--r-- | resources/utilities/ich9deblob/descriptor/descriptor.h (renamed from resources/utilities/ich9deblob/descriptor/struct.h) | 0 | ||||
-rw-r--r-- | resources/utilities/ich9deblob/ich9deblob.c | 2 | ||||
-rw-r--r-- | resources/utilities/ich9deblob/x86compatibility.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/resources/utilities/ich9deblob/Makefile b/resources/utilities/ich9deblob/Makefile index 5588ec53..0a69882a 100644 --- a/resources/utilities/ich9deblob/Makefile +++ b/resources/utilities/ich9deblob/Makefile @@ -20,8 +20,8 @@ CC=gcc CFLAGS=-I. -ich9deblob: ich9deblob.c descriptor/struct.h gbe/gbe.h - $(CC) $(CFLAGS) ich9deblob.c descriptor/struct.h gbe/gbe.h -o ich9deblob +ich9deblob: ich9deblob.c descriptor/descriptor.h gbe/gbe.h + $(CC) $(CFLAGS) ich9deblob.c descriptor/descriptor.h gbe/gbe.h -o ich9deblob clean: rm -f ich9deblob *.o diff --git a/resources/utilities/ich9deblob/descriptor/struct.h b/resources/utilities/ich9deblob/descriptor/descriptor.h index 710c09b9..710c09b9 100644 --- a/resources/utilities/ich9deblob/descriptor/struct.h +++ b/resources/utilities/ich9deblob/descriptor/descriptor.h diff --git a/resources/utilities/ich9deblob/ich9deblob.c b/resources/utilities/ich9deblob/ich9deblob.c index 4073453b..49d5a9b2 100644 --- a/resources/utilities/ich9deblob/ich9deblob.c +++ b/resources/utilities/ich9deblob/ich9deblob.c @@ -42,7 +42,7 @@ #include <stdio.h> #include <string.h> -#include "descriptor/struct.h" // structs describing what's in the descriptor region +#include "descriptor/descriptor.h" // structs describing what's in the descriptor region #include "gbe/gbe.h" // structs describing what's in the gbe region, plus functions that use them #include "x86compatibility.c" // compatibility checks. this utility is not portable yet. diff --git a/resources/utilities/ich9deblob/x86compatibility.c b/resources/utilities/ich9deblob/x86compatibility.c index ebbf2d21..4fe8d564 100644 --- a/resources/utilities/ich9deblob/x86compatibility.c +++ b/resources/utilities/ich9deblob/x86compatibility.c @@ -24,7 +24,7 @@ #include <stdio.h> #include <string.h> -#include "descriptor/struct.h" // structs describing what's in the descriptor region +#include "descriptor/descriptor.h" // structs describing what's in the descriptor region #include "gbe/gbe.h" // structs describing what's in the gbe region, plus functions that use them // --------------------------------------------------------------------- |