1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5    <key>PreBootPaths</key>     <!-- stored at root of any Apple_Boot -->
6    <dict>
7        <key>DiskLabel</key>    <!-- to be tweaked for the picker -->
8        <string>/System/Library/CoreServices/.disk_label</string>
9        <!-- implied .disk_label helper files -->
10        <key>AdditionalPaths</key>  <!-- optional stuff at the root -->
11        <array>
12            <string>/.VolumeIcon.icns</string>
13            <string>/System/Library/CoreServices/SystemVersion.plist</string>
14            <string>/System/Library/CoreServices/PlatformSupport.plist</string>
15        </array>
16    </dict>
17
18    <key>BooterPaths</key>      <!-- to be blessed appropriately -->
19    <dict>
20        <key>EFIBooter</key>    <!-- finderinfo[1] -> file -->
21        <string>/System/Library/CoreServices/boot.efi</string>
22    </dict>
23
24    <key>PostBootPaths</key>    <!-- in RPS directories known to booter -->
25    <dict>
26        <key>BootConfig</key>   <!-- to be updated w/UUID in Apple_Boot -->
27        <string>/Library/Preferences/SystemConfiguration/com.apple.Boot.plist</string>
28        <key>EncryptedRoot</key>
29        <dict>
30            <key>EncryptedPropertyCache</key>
31            <string>/System/Library/Caches/com.apple.corestorage/EncryptedRoot.plist.wipekey</string>
32            <!-- OS doesn't require content in the root volume's ER.pl.wk -->
33            <key>RootVolumePropertyCache</key>
34            <false/>
35            <key>DefaultResourcesDir</key>
36            <string>/usr/standalone/i386/EfiLoginUI/</string>
37            <!-- localized resources are optional but are all or nothing -->
38            <key>LocalizationSource</key>
39            <string>/System/Library/PrivateFrameworks/EFILogin.framework/Resources/EFIResourceBuilder.bundle/Contents/Resources</string>
40            <key>LanguagesPref</key>
41            <string>/Library/Preferences/.GlobalPreferences.plist</string>
42            <key>LocalizedResourcesCache</key>
43            <string>/System/Library/Caches/com.apple.corestorage/EFILoginLocalizations</string>
44        </dict>
45        <key>Kernelcache v1.3</key>
46        <dict>
47            <key>ExtensionsDir</key>
48            <array>
49                <string>/System/Library/Extensions</string>
50                <string>/Library/Extensions</string>
51            </array>
52            <key>Path</key>
53            <string>/System/Library/Caches/com.apple.kext.caches/Startup/kernelcache</string>
54            <key>KernelPath</key>
55            <string>/mach_kernel</string>
56            <key>Archs</key>
57            <array>
58                <string>x86_64</string>
59            </array>
60        </dict>
61    </dict>
62</dict>
63</plist>
64