summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/utilities/ich9deblob/Makefile4
-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.c2
-rw-r--r--resources/utilities/ich9deblob/x86compatibility.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/resources/utilities/ich9deblob/Makefile b/resources/utilities/ich9deblob/Makefile
index 5588ec5..0a69882 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 710c09b..710c09b 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 4073453..49d5a9b 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 ebbf2d2..4fe8d56 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
// ---------------------------------------------------------------------