https://git.reactos.org/?p=reactos.git;a=commitdiff;h=cfe387a9b09751241060a…
commit cfe387a9b09751241060a6c0f24c94bc46df98b5
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sat Apr 9 02:51:20 2022 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sat Apr 9 03:15:57 2022 +0200
[BOOTDATA] Add two missing separating commas in the ServiceGroupOrder List
multi-string.
Typos introduced in commit 4d1ea554c.
These had the effect of enumerating "NetworkProviderRemoteValidation"
and "Extended BasePCI Configuration" as groups, which were of course
invalid/non-existent.
The actual groups are: "NetworkProvider", "RemoteValidation",
"Extended Base", and "PCI Configuration".
Fixing this may correct the loading order of drivers that belong to
these groups (if we do have such drivers).
---
boot/bootdata/hivesys.inf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/boot/bootdata/hivesys.inf b/boot/bootdata/hivesys.inf
index 48c51e04636..2486a3f551c 100644
--- a/boot/bootdata/hivesys.inf
+++ b/boot/bootdata/hivesys.inf
@@ -1466,11 +1466,11 @@
HKLM,"SYSTEM\CurrentControlSet\Control\ServiceGroupOrder","List",0x00010000,
\
"SpoolerGroup", \
"AudioGroup", \
"SmartCardGroup", \
- "NetworkProvider" \
+ "NetworkProvider", \
"RemoteValidation", \
"NetDDEGroup", \
"Parallel arbitrator", \
- "Extended Base" \
+ "Extended Base", \
"PCI Configuration", \
"MS Transactions"