mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[0.4.14][BTRFS] Workaround unrecognized device CORE-17388
Avoids the wizard for unrecognized devices to pop
up after each and every reboot when BTRFS is used.
Also slightly 'improves' the displaying in device manager.
Both regressed by 0.4.14-dev-1535-g 194ea909fd
This is no proper solution, but more or less the same
that we did for 0.4.13 release already.
The proper fix will come in 0.4.15-dev'ing with
the storage-stack-rewrite and does not require those
4 lines to be added in the btrfs.inf anymore.
This commit is contained in:
parent
031871607a
commit
3ee039917c
1 changed files with 4 additions and 0 deletions
|
@ -37,18 +37,22 @@ AddService = %ServiceName%,0x802,Btrfs.Service
|
|||
[Standard.NTamd64]
|
||||
%VolumeName% = Btrfs_Install, BtrfsVolume
|
||||
%ControllerName% = Btrfs_Install, ROOT\btrfs
|
||||
%ControllerName% = Btrfs_Install, DETECTED\BTRFS
|
||||
|
||||
[Standard.NTx86]
|
||||
%VolumeName% = Btrfs_Install, BtrfsVolume
|
||||
%ControllerName% = Btrfs_Install, ROOT\btrfs
|
||||
%ControllerName% = Btrfs_Install, DETECTED\BTRFS
|
||||
|
||||
[Standard.NTarm]
|
||||
%VolumeName% = Btrfs_Install, BtrfsVolume
|
||||
%ControllerName% = Btrfs_Install, ROOT\btrfs
|
||||
%ControllerName% = Btrfs_Install, DETECTED\BTRFS
|
||||
|
||||
[Standard.NTarm64]
|
||||
%VolumeName% = Btrfs_Install, BtrfsVolume
|
||||
%ControllerName% = Btrfs_Install, ROOT\btrfs
|
||||
%ControllerName% = Btrfs_Install, DETECTED\BTRFS
|
||||
|
||||
[Btrfs_Install]
|
||||
OptionDesc = %ServiceDescription%
|
||||
|
|
Loading…
Reference in a new issue