summaryrefslogtreecommitdiffhomepage
path: root/Private/Drivers
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-21 07:55:20 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-21 07:55:20 +0200
commitbc4f32c10a34c6bded98f378004f7435deede43b (patch)
tree31aedfebcaef1c3b045f1c19a48792ba8e77cf01 /Private/Drivers
parent155971914073bedfa585a0be4d14a40bd23e3b8f (diff)
MHR-5: Fix: not using buggy wildcard anymore.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/Drivers')
-rw-r--r--Private/Drivers/Bonjour/Bonjour.c (renamed from Private/Drivers/Bonjour/SampleDriver.c)4
-rw-r--r--Private/Drivers/Bonjour/makefile2
-rw-r--r--Private/Drivers/SampleDriver/makefile2
3 files changed, 4 insertions, 4 deletions
diff --git a/Private/Drivers/Bonjour/SampleDriver.c b/Private/Drivers/Bonjour/Bonjour.c
index 8289fcbc..dba649c9 100644
--- a/Private/Drivers/Bonjour/SampleDriver.c
+++ b/Private/Drivers/Bonjour/Bonjour.c
@@ -8,11 +8,11 @@
#include <DriverKit/KernelPrint.h>
int __ImageStart(void) {
- kernelPrintStr("SampleDriver: Starting up...\r\n");
+ kernelPrintStr("Bonjour: Starting up zeroconf...\r\n");
return 0;
}
int __ImageEnd(void) {
- kernelPrintStr("SampleDriver: Shutting down...\r\n");
+ kernelPrintStr("Bonjour: Shutting down zeroconf...\r\n");
return 0;
}
diff --git a/Private/Drivers/Bonjour/makefile b/Private/Drivers/Bonjour/makefile
index e1cdba67..b98d9ff9 100644
--- a/Private/Drivers/Bonjour/makefile
+++ b/Private/Drivers/Bonjour/makefile
@@ -24,7 +24,7 @@ EMU_FLAGS=-net none -smp 4 -m 4G -M q35 -bios OVMF.fd -device piix3-ide,id=ide -
LD_FLAGS=-e __ImageStart --subsystem=17
-OBJ=$(wildcard *.o) $(wildcard HEL/AMD64/*.obj)
+OBJ=*.o
REM=rm
diff --git a/Private/Drivers/SampleDriver/makefile b/Private/Drivers/SampleDriver/makefile
index 637be18d..2433aa51 100644
--- a/Private/Drivers/SampleDriver/makefile
+++ b/Private/Drivers/SampleDriver/makefile
@@ -24,7 +24,7 @@ EMU_FLAGS=-net none -smp 4 -m 4G -M q35 -bios OVMF.fd -device piix3-ide,id=ide -
LD_FLAGS=-e __ImageStart --subsystem=17
-OBJ=$(wildcard *.o) $(wildcard HEL/AMD64/*.obj)
+OBJ=*.o
REM=rm