| 7875 | } |
| 7876 | |
| 7877 | XStringW GetOtherKextsDir (BOOLEAN On) |
| 7878 | { |
| 7879 | XStringW SrcDir; |
| 7880 | |
| 7881 | SrcDir = SWPrintf("%ls\\kexts\\%s", OEMPath.wc_str(), On?"Other":"Off"); |
| 7882 | if (!FileExists (SelfVolume->RootDir, SrcDir)) { |
| 7883 | SrcDir = SWPrintf("\\EFI\\CLOVER\\kexts\\%s", On?"Other":"Off"); |
| 7884 | if (!FileExists (SelfVolume->RootDir, SrcDir)) { |
| 7885 | SrcDir.setEmpty(); |
| 7886 | } |
| 7887 | } |
| 7888 | |
| 7889 | return SrcDir; |
| 7890 | } |
| 7891 | |
| 7892 | //dmazar |
| 7893 | // caller is responsible for FreePool the result |
no test coverage detected