[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).
This commit is contained in:
Hermès Bélusca-Maïto 2022-04-09 02:51:20 +02:00
parent fd00338b59
commit cfe387a9b0
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -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"