apple-data 1.0.421 → 1.0.424

Sign up to get free protection for your applications and to get access to all the features.
data/share/mach_o.yaml CHANGED
@@ -4,90 +4,76 @@ metadata:
4
4
  credits:
5
5
  cpu_types:
6
6
  file_types:
7
- MH_OBJECT:
8
- description: An intermediate object file that results from a compile unit (e.g. single .c file)
9
- value: 1
10
- MH_EXECUTE:
11
- description: A complete executable MachO file (typically a user mode binary)
12
- value: 2
13
- MH_FVMLIB:
14
- description: A FVM (fixed virtual memory, or non-relocatable/non-position independenct code PIC) dynamic library
15
- value: 3
7
+ MH_BUNDLE:
8
+ description: A loadable bundle (often essentially a plugin) should be a complete
9
+ closure on symbols such as a executable but intended to be loaded into another
10
+ process's virtual memory space. A reason for the usage of `MH_BUNDLE` is that
11
+ the object must be explicitly late bound by calling `dlopen` or related APIs,
12
+ it cannot be linked to as though it were a library.
13
+ value: 8
16
14
  MH_CORE:
17
15
  description: A core dump (user or kernel)
18
16
  value: 4
19
- MH_PRELOAD:
20
- description: \"Preloaded\" images. Used for firmware payloads
21
- value: 5
17
+ MH_DSYM:
18
+ description: A compile unit containing only debugging symbols
19
+ value: 10
22
20
  MH_DYLIB:
23
21
  description: A dynamic (read bound at runtime) library
24
22
  value: 6
23
+ MH_DYLIB_STUB:
24
+ description: An object used for linking that contains no content. Somewhat similar
25
+ in nature to a `.tlb` file and no longer in common usage as Apple uses TLB files
26
+ as a replacement.
27
+ value: 9
25
28
  MH_DYLINKER:
26
29
  description: A dynamic linker (typically only one exists and is
27
30
  value: 7
28
- MH_BUNDLE:
29
- description: A loadable bundle (often essentially a plugin) should be a complete closure on symbols such as a
30
- executable but intended to be loaded into another process's virtual memory space. A reason for the usage of
31
- `MH_BUNDLE` is that the object must be explicitly late bound by calling `dlopen` or related APIs, it cannot
32
- be linked to as though it were a library.
33
- value: 8
34
- MH_DYLIB_STUB:
35
- description: An object used for linking that contains no content. Somewhat similar in nature to a `.tlb` file and
36
- no longer in common usage as Apple uses TLB files as a replacement.
37
- value: 9
38
- MH_DSYM:
39
- description: A compile unit containing only debugging symbols
40
- value: 10
41
- MH_KEXT_BUNDLE:
42
- description: A kernel extension bundle. Name comes from 32bit lineage where MH_BUNDLE were kexts.rake on non-64bit
43
- platforms
44
- value: 11
31
+ MH_EXECUTE:
32
+ description: A complete executable MachO file (typically a user mode binary)
33
+ value: 2
45
34
  MH_FILESET:
46
35
  description: A collection of other MachO files, used by KernelCollections
47
36
  value: 12
37
+ MH_FVMLIB:
38
+ description: A FVM (fixed virtual memory, or non-relocatable/non-position independenct
39
+ code PIC) dynamic library
40
+ value: 3
41
+ MH_KEXT_BUNDLE:
42
+ description: A kernel extension bundle. Name comes from 32bit lineage where MH_BUNDLE
43
+ were kexts.rake on non-64bit platforms
44
+ value: 11
45
+ MH_OBJECT:
46
+ description: An intermediate object file that results from a compile unit (e.g.
47
+ single .c file)
48
+ value: 1
49
+ MH_PRELOAD:
50
+ description: \"Preloaded\" images. Used for firmware payloads
51
+ value: 5
48
52
  segments:
49
- __TEXT:
50
- description: The text region contains any executable code (in the machine code
51
- of the platform for this binary) and therefore will always be a read-only (write
52
- protected) region of memory when mapped into a process. (r-x)
53
- __text:
54
- description: Generic code region. This area will have the execute flag set
55
- on it's content
53
+ __AUTH:
54
+ description: Used by arm64e for pointer authenticaton codes (PAC) mutable data
55
+ __data:
56
+ description: General purpose PAC authenticated data
57
+ __objc_data:
58
+ description: ObjC specific PAC authenticated data
59
+ __AUTH_CONST:
60
+ description: Used by arm64e pointer authentication codes (PAC) and read only
56
61
  __const:
57
- description: Constant variables. This region will be non-execute on platforms
58
- that support execute never, DEP or NX concepts. See `__DATA_CONST.__const`
59
- __cstring:
60
- description: ASCII strings null terminated. This region can be split on `\0`
61
- into strings.
62
- __os_log:
63
- description: Specific support for Apple OSLog facility containing the patterns
64
- used
65
- __eh_frame:
66
- description: Execption handling frame
67
- __stubs:
68
- description: Locations that text calls that initially point to a helper thunk (see __stub_helper) but will be
69
- late bound to the dynamic symbol
70
- __stub_helper:
71
- description: A helper function that when called binds the prior call site to the proper dyld import
72
- __info_plist:
73
- description:
74
- __unwind_info:
75
- description: Information to help debuggers / exception handlers unwind the stack (info about prolouge etc)
76
- allowing for parts of the stack to remain a compiler implementation detail.
77
- __auth_stubs:
78
- description:
79
- __init_offsets:
80
- description:
81
- __objc_methlist:
82
- description:
83
- __gcc_except_tab:
84
- description: GCC exception handler table
85
- __objc_classname:
86
- description: A collection of strings that provide the names for Objective-C classes in this object file
87
- __objc_methname:
88
- description: A colleciton of strings that provide the names of Objective-C methods for a given class (selectors)
89
- __objc_methtype:
62
+ description: Authenticated constants
63
+ __auth_got:
64
+ description: Authenticated Global offset Table
65
+ __cfstring:
66
+ description: Authenticated CoreFoundation strings
67
+ __auth_ptr:
90
68
  description:
69
+ __objc_const:
70
+ description: Authenticated Objective-C constant values
71
+ __got:
72
+ description: Global offset Table
73
+ __CTF:
74
+ description: Compact C Type Format
75
+ __ctf:
76
+ description: https://github.com/apple-oss-distributions/dtrace/tree/main/tools/ctfconvert
91
77
  __DATA:
92
78
  description: Mutable data region (rw-)
93
79
  __data:
@@ -154,30 +140,16 @@ segments:
154
140
  description:
155
141
  __objc_const:
156
142
  description: Constant ObjC data
157
- __KLDDATA:
158
- description: Data region for KLD or kernel linker
159
- __init:
160
- description:
161
- __init_entry_set:
162
- description:
163
- __cstring:
164
- description: C-Style (null terminated) strings for the kernel linker
165
- __const:
166
- description: Constant data
167
- __mod_init_func:
168
- description: Module initializer funtion
169
- __mod_term_func:
170
- description: Module termination function
171
- __bss:
172
- description: Initialized data
173
143
  __HIB:
174
- description: Hardware specific information for coming out of hibernation. This section is solely responsable for
175
- ensuring that the sleepimage is restored. Note that it all operates at the same protection levels (code, const,
176
- and data) and therefore doesn't take advantage of some hardware protections.
144
+ description: Hardware specific information for coming out of hibernation. This
145
+ section is solely responsable for ensuring that the sleepimage is restored. Note
146
+ that it all operates at the same protection levels (code, const, and data) and
147
+ therefore doesn't take advantage of some hardware protections.
177
148
  __text:
178
149
  description: Executable code used to pull a machine out of hibernation
179
150
  __bootPT:
180
- description: Initial page table for use during boot up from a hibernation for protected mode
151
+ description: Initial page table for use during boot up from a hibernation for
152
+ protected mode
181
153
  __desc:
182
154
  description:
183
155
  __data:
@@ -190,81 +162,127 @@ segments:
190
162
  description: Initialized mutable data
191
163
  __common:
192
164
  description:
193
- __VECTORS:
194
- description: Vector table. Often used to configure a kernel / coprocessor for reset, exception etc. See ARM-M
195
- profile for an example
196
- __recover:
197
- description:
198
165
  __KLD:
199
- description: The kernel linker (used to dynamiclly bind a kernel extension) analagous to dyld in user-mode
166
+ description: The kernel linker (used to dynamiclly bind a kernel extension) analagous
167
+ to dyld in user-mode
200
168
  __text:
201
169
  description: The executable code for the kernel linker
202
- __LASTDATA_CONST:
203
- description: Last exported symbol from the const region of the kernel or object
170
+ __KLDDATA:
171
+ description: Data region for KLD or kernel linker
172
+ __init:
173
+ description:
174
+ __init_entry_set:
175
+ description:
176
+ __cstring:
177
+ description: C-Style (null terminated) strings for the kernel linker
178
+ __const:
179
+ description: Constant data
204
180
  __mod_init_func:
205
- description: Module initialization function
181
+ description: Module initializer funtion
182
+ __mod_term_func:
183
+ description: Module termination function
184
+ __bss:
185
+ description: Initialized data
206
186
  __LAST:
207
187
  description: Segment that contains the last kernel symbol exported
208
188
  __last:
209
- description: Contains `_last_kernel_symbol` which is the last exported kernel symbol
210
- __PRELINK_TEXT:
211
- description: A region of executable code that is the combination of multiple linkable objects having been prebound
212
- __text:
213
- description: The prelinked, executable code region
189
+ description: Contains `_last_kernel_symbol` which is the last exported kernel
190
+ symbol
191
+ __LASTDATA_CONST:
192
+ description: Last exported symbol from the const region of the kernel or object
193
+ __mod_init_func:
194
+ description: Module initialization function
195
+ __LINKEDIT:
196
+ description: Though named "LINKEDIT" this segment actually contains any metadata
197
+ of this Mach-O object. For example this area contains code signature, as well
198
+ as dynamic linker opcodes. This area is always read only. The contents of
199
+ this area are described by various `LC_` load commands.
200
+ __LINKINFO:
201
+ description:
202
+ __symbolsets:
203
+ description:
204
+ __OBJC_CONST:
205
+ description: A region of Objective-C metadata that is read-only
206
+ __objc_class_ro:
207
+ description: ObjC class info that is read-only to prevent runtime tampering
208
+ (swizzling for example)
209
+ __PAGEZERO:
210
+ description: A dummy page used to mark addresses at low memory as not readable. This
211
+ causes a dereference of a low integer to cause a page fault helping not propogate
212
+ type errors when casting pointers.
214
213
  __PRELINK_INFO:
215
214
  description: Descriptive information about the prelinked region of this object
216
215
  __info:
217
216
  description:
218
- __LINKINFO:
219
- description:
220
- __symbolsets:
217
+ __PRELINK_TEXT:
218
+ description: A region of executable code that is the combination of multiple linkable
219
+ objects having been prebound
220
+ __text:
221
+ description: The prelinked, executable code region
222
+ __TEXT:
223
+ description: The text region contains any executable code (in the machine code
224
+ of the platform for this binary) and therefore will always be a read-only (write
225
+ protected) region of memory when mapped into a process. (r-x)
226
+ __text:
227
+ description: Generic code region. This area will have the execute flag set
228
+ on it's content
229
+ __const:
230
+ description: Constant variables. This region will be non-execute on platforms
231
+ that support execute never, DEP or NX concepts. See `__DATA_CONST.__const`
232
+ __cstring:
233
+ description: ASCII strings null terminated. This region can be split on `\0`
234
+ into strings.
235
+ __os_log:
236
+ description: Specific support for Apple OSLog facility containing the patterns
237
+ used
238
+ __eh_frame:
239
+ description: Execption handling frame
240
+ __stubs:
241
+ description: Locations that text calls that initially point to a helper thunk
242
+ (see __stub_helper) but will be late bound to the dynamic symbol
243
+ __stub_helper:
244
+ description: A helper function that when called binds the prior call site to
245
+ the proper dyld import
246
+ __info_plist:
247
+ description:
248
+ __unwind_info:
249
+ description: Information to help debuggers / exception handlers unwind the stack
250
+ (info about prolouge etc) allowing for parts of the stack to remain a compiler
251
+ implementation detail.
252
+ __auth_stubs:
253
+ description:
254
+ __init_offsets:
255
+ description:
256
+ __objc_methlist:
257
+ description:
258
+ __gcc_except_tab:
259
+ description: GCC exception handler table
260
+ __objc_classname:
261
+ description: A collection of strings that provide the names for Objective-C
262
+ classes in this object file
263
+ __objc_methname:
264
+ description: A colleciton of strings that provide the names of Objective-C methods
265
+ for a given class (selectors)
266
+ __objc_methtype:
221
267
  description:
222
- __CTF:
223
- description: Compact C Type Format
224
- __ctf:
225
- description: https://github.com/apple-oss-distributions/dtrace/tree/main/tools/ctfconvert
226
- __LINKEDIT:
227
- description: Though named "LINKEDIT" this segment actually contains any metadata of this Mach-O object. For example
228
- this area contains code signature, as well as dynamic linker opcodes. This area is always read only. The
229
- contents of this area are described by various `LC_` load commands.
230
268
  __TEXT_EXEC:
231
269
  description:
232
- __PAGEZERO:
233
- description: A dummy page used to mark addresses at low memory as not readable. This causes a dereference of a low
234
- integer to cause a page fault helping not propogate type errors when casting pointers.
235
- __AUTH_CONST:
236
- description: Used by arm64e pointer authentication codes (PAC) and read only
237
- __const:
238
- description: Authenticated constants
239
- __auth_got:
240
- description: Authenticated Global offset Table
241
- __cfstring:
242
- description: Authenticated CoreFoundation strings
243
- __auth_ptr:
270
+ __VECTORS:
271
+ description: Vector table. Often used to configure a kernel / coprocessor for
272
+ reset, exception etc. See ARM-M profile for an example
273
+ __recover:
244
274
  description:
245
- __objc_const:
246
- description: Authenticated Objective-C constant values
247
- __got:
248
- description: Global offset Table
249
- __AUTH:
250
- description: Used by arm64e for pointer authenticaton codes (PAC) mutable data
251
- __data:
252
- description: General purpose PAC authenticated data
253
- __objc_data:
254
- description: ObjC specific PAC authenticated data
255
- __OBJC_CONST:
256
- description: A region of Objective-C metadata that is read-only
257
- __objc_class_ro:
258
- description: ObjC class info that is read-only to prevent runtime tampering (swizzling for example)
259
275
  commands:
260
276
  LC_SEGMENT:
261
- description: Causes the loading of a 32bit segment with a given protection level. Contains 0 or more sections
277
+ description: Causes the loading of a 32bit segment with a given protection level. Contains
278
+ 0 or more sections
262
279
  value: 1
263
280
  LC_SYMTAB:
264
281
  description: Classical symbol table (direct symbols defined in this object)
265
282
  value: 2
266
283
  LC_SYMSEG:
267
- description: Classical GCC compatible "symbol segment". Not commonly used as it is replaced with dyld opcodes.
284
+ description: Classical GCC compatible "symbol segment". Not commonly used as
285
+ it is replaced with dyld opcodes.
268
286
  value: 3
269
287
  LC_THREAD:
270
288
  description: Initial state of the Mach thread for a executable Mach-O
@@ -291,31 +309,35 @@ commands:
291
309
  description: Dynamic or indirect symbol table.
292
310
  value: 11
293
311
  LC_LOAD_DYLIB:
294
- description: Load a dynamic library (dylib) by it's identity. This occurs before process start.
312
+ description: Load a dynamic library (dylib) by it's identity. This occurs before
313
+ process start.
295
314
  value: 12
296
315
  LC_ID_DYLIB:
297
- description: Unique identifier for this dynamic library to be used in locating it for import
316
+ description: Unique identifier for this dynamic library to be used in locating
317
+ it for import
298
318
  value: 13
299
319
  LC_LOAD_DYLINKER:
300
- description: Command to load a specific dynamic linker to bind dylibs into this object
320
+ description: Command to load a specific dynamic linker to bind dylibs into this
321
+ object
301
322
  value: 14
302
323
  LC_ID_DYLINKER:
303
- description: The identity of the dynamic linker (dyld) expected to be used to bind this object in memory
324
+ description: The identity of the dynamic linker (dyld) expected to be used to
325
+ bind this object in memory
304
326
  value: 15
305
327
  LC_PREBOUND_DYLIB:
306
328
  description:
307
329
  value: 16
308
330
  LC_ROUTINES:
309
- description: Used to define initialize / finalize functions on 32bit platforms. Historical as _init_func/_term_func
310
- are now how this is handled.
331
+ description: Used to define initialize / finalize functions on 32bit platforms. Historical
332
+ as _init_func/_term_func are now how this is handled.
311
333
  value: 17
312
334
  LC_SUB_FRAMEWORK:
313
- description: Used by "Umbrella Frameworks" to declare the frameworks that the umbrella re-exports. For an example
314
- see Cocoa, AppKit and Foundation
335
+ description: Used by "Umbrella Frameworks" to declare the frameworks that the
336
+ umbrella re-exports. For an example see Cocoa, AppKit and Foundation
315
337
  value: 18
316
338
  LC_SUB_UMBRELLA:
317
- description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa exports Foundation, AppKit for
318
- example of this)
339
+ description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa
340
+ exports Foundation, AppKit for example of this)
319
341
  value: 19
320
342
  LC_SUB_CLIENT:
321
343
  description:
@@ -324,25 +346,29 @@ commands:
324
346
  description:
325
347
  value: 21
326
348
  LC_TWOLEVEL_HINTS:
327
- description: Two level namespacing allows for the binding to a symbol that may have the same name in two different
328
- libraries. The first namespace is the dylib contining the symbol and the second namespace is the symbol itself.
349
+ description: Two level namespacing allows for the binding to a symbol that may
350
+ have the same name in two different libraries. The first namespace is the dylib
351
+ contining the symbol and the second namespace is the symbol itself.
329
352
  value: 22
330
353
  LC_PREBIND_CKSUM:
331
- description: Checksum data to know if this "optimized" or prebound object is still valid for the files it was
332
- generated from.
354
+ description: Checksum data to know if this "optimized" or prebound object is still
355
+ valid for the files it was generated from.
333
356
  value: 23
334
357
  LC_LOAD_WEAK_DYLIB:
335
- description: Attempt to load a Dylib but do not fail if binding cannot occur due to its absence
358
+ description: Attempt to load a Dylib but do not fail if binding cannot occur due
359
+ to its absence
336
360
  value: 2147483672
337
361
  LC_SEGMENT_64:
338
- description: Causes the loading of a 64bit segment with a given protection level. Contains 0 or more sections
362
+ description: Causes the loading of a 64bit segment with a given protection level. Contains
363
+ 0 or more sections
339
364
  value: 25
340
365
  LC_ROUTINES_64:
341
- description: Used to define initialize / finalize functions on 64bit platforms. Historical as _init_func/_term_func
342
- are now how this is handled.
366
+ description: Used to define initialize / finalize functions on 64bit platforms. Historical
367
+ as _init_func/_term_func are now how this is handled.
343
368
  value: 26
344
369
  LC_UUID:
345
- description: A UUID (GUID) that uniquely identifies this object. Should only occur once
370
+ description: A UUID (GUID) that uniquely identifies this object. Should only
371
+ occur once
346
372
  value: 27
347
373
  LC_RPATH:
348
374
  description:
@@ -357,11 +383,12 @@ commands:
357
383
  description: Used to export symbols from an object file that this object imported
358
384
  value: 2147483679
359
385
  LC_LAZY_LOAD_DYLIB:
360
- description: Dylibs that should be included in this objects dependencies but should only be loaded and bound when
361
- a reference is made to them
386
+ description: Dylibs that should be included in this objects dependencies but should
387
+ only be loaded and bound when a reference is made to them
362
388
  value: 32
363
389
  LC_ENCRYPTION_INFO:
364
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
390
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
391
+ engineering (DRM, be mindful of DMCA)
365
392
  value: 33
366
393
  LC_DYLD_INFO:
367
394
  description:
@@ -394,11 +421,12 @@ commands:
394
421
  description: The verion of source code this Mach-O file was built from
395
422
  value: 42
396
423
  LC_DYLIB_CODE_SIGN_DRS:
397
- description: Classical code signing "designated requirements". No longer in common usage as this is now in a
398
- LC_CODE_SIGNATURE "magic page"
424
+ description: Classical code signing "designated requirements". No longer in common
425
+ usage as this is now in a LC_CODE_SIGNATURE "magic page"
399
426
  value: 43
400
427
  LC_ENCRYPTION_INFO_64:
401
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
428
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
429
+ engineering (DRM, be mindful of DMCA)
402
430
  value: 44
403
431
  LC_LINKER_OPTION:
404
432
  description:
@@ -413,11 +441,12 @@ commands:
413
441
  description: The minimum watchOS to laod and execute this binary
414
442
  value: 48
415
443
  LC_NOTE:
416
- description: An arbitrary human readable text note included in this Mach-O. These should not be used by automated
417
- tooling as their unstructured
444
+ description: An arbitrary human readable text note included in this Mach-O. These
445
+ should not be used by automated tooling as their unstructured
418
446
  value: 49
419
447
  LC_BUILD_VERSION:
420
- description: Contains information about the binaries platform, it's target and minimum SDK
448
+ description: Contains information about the binaries platform, it's target and
449
+ minimum SDK
421
450
  value: 50
422
451
  LC_DYLD_EXPORTS_TRIE:
423
452
  description: The exporeted DYLD symbols from this dylib
@@ -426,6 +455,6 @@ commands:
426
455
  description:
427
456
  value: 2147483700
428
457
  LC_FILESET_ENTRY:
429
- description: An entry of a Mach-O object containing other Mach-O files. Current usage is in macOS
430
- 11+ KernelCollections
458
+ description: An entry of a Mach-O object containing other Mach-O files. Current
459
+ usage is in macOS 11+ KernelCollections
431
460
  value: 2147483701
@@ -192,7 +192,7 @@ mobile_assets:
192
192
  - url: https://mesu.apple.com/assets/com_apple_MobileAsset_MediaSupport/com_apple_MobileAsset_MediaSupport.xml
193
193
  asset_type: com.apple.MobileAsset.MediaSupport
194
194
  - url: https://mesu.apple.com/assets/com_apple_MobileAsset_MobileAccessoryUpdate_A1422_EA/com_apple_MobileAsset_MobileAccessoryUpdate_A1422_EA.xml
195
- asset_type:
195
+ asset_type: com.apple.MobileAsset.MobileAccessoryUpdate.A1422.EA
196
196
  - url: https://mesu.apple.com/assets/com_apple_MobileAsset_MobileAccessoryUpdate_A1450_EA/com_apple_MobileAsset_MobileAccessoryUpdate_A1450_EA.xml
197
197
  asset_type:
198
198
  - url: https://mesu.apple.com/assets/com_apple_MobileAsset_MobileAccessoryUpdate_A1468_EA/com_apple_MobileAsset_MobileAccessoryUpdate_A1468_EA.xml
@@ -765,8 +765,6 @@ mobile_assets:
765
765
  asset_type: com.apple.MobileAsset.VoiceServicesVocalizerVoice
766
766
  - url: https://mesu.apple.com/assets/tvOS11DeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
767
767
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
768
- - url: https://mesu.apple.com/assets/tvOS11DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
769
- asset_type:
770
768
  - url: https://mesu.apple.com/assets/tvOS11PublicSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
771
769
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
772
770
  - url: https://mesu.apple.com/assets/tvOS11PublicSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
@@ -817,12 +815,8 @@ mobile_assets:
817
815
  asset_type: com.apple.MobileAsset.RecoveryOSUpdate
818
816
  - url: https://mesu.apple.com/assets/tvOS14PublicSeed/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
819
817
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
820
- - url: https://mesu.apple.com/assets/tvOS14PublicSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
821
- asset_type:
822
818
  - url: https://mesu.apple.com/assets/tvOSDeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
823
819
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
824
- - url: https://mesu.apple.com/assets/tvOSDeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
825
- asset_type:
826
820
  - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_Activity_Achievements/com_apple_MobileAsset_Activity_Achievements.xml
827
821
  asset_type: com.apple.MobileAsset.Activity.Achievements
828
822
  - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_ActivityChallengeAssets/com_apple_MobileAsset_ActivityChallengeAssets.xml
@@ -873,8 +867,6 @@ mobile_assets:
873
867
  asset_type: com.apple.MobileAsset.ProactiveEventTrackerAssets
874
868
  - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_RaiseToSpeakAssets/com_apple_MobileAsset_RaiseToSpeakAssets.xml
875
869
  asset_type: com.apple.MobileAsset.RaiseToSpeakAssets
876
- - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
877
- asset_type:
878
870
  - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
879
871
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
880
872
  - url: https://mesu.apple.com/assets/watch/com_apple_MobileAsset_routined_defaults/com_apple_MobileAsset_routined_defaults.xml
@@ -907,62 +899,52 @@ mobile_assets:
907
899
  asset_type: com.apple.MobileAsset.WatchSoftwareUpdateDocumentation
908
900
  - url: https://mesu.apple.com/assets/watchOS4DeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
909
901
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
910
- - url: https://mesu.apple.com/assets/watchOS4DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
911
- asset_type:
912
902
  - url: https://mesu.apple.com/assets/watchOS5DeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
913
903
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
914
- - url: https://mesu.apple.com/assets/watchOS5DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
915
- asset_type:
916
904
  - url: https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
917
905
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
918
- - url: https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
919
- asset_type:
920
906
  - url: https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
921
907
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
922
- - url: https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
923
- asset_type:
924
908
  - url: https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
925
909
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
926
- - url: https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
927
- asset_type:
928
910
  - url: https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
929
911
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
930
- - url: https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
931
- asset_type:
932
912
  - url: https://mesu.apple.com/assets/watchOS7DeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
933
913
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
934
914
  - url: https://mesu.apple.com/assets/watchOS7DeveloperSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
935
915
  asset_type: com.apple.MobileAsset.RecoveryOSUpdate
936
916
  - url: https://mesu.apple.com/assets/watchOS7DeveloperSeed/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
937
917
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
938
- - url: https://mesu.apple.com/assets/watchOS7DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
939
- asset_type:
940
918
  - url: https://mesu.apple.com/assets/watchOS7PublicSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
941
919
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
942
920
  - url: https://mesu.apple.com/assets/watchOS7PublicSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
943
921
  asset_type: com.apple.MobileAsset.RecoveryOSUpdate
944
922
  - url: https://mesu.apple.com/assets/watchOS7PublicSeed/com_apple_MobileAsset_RecoveryOSUpdateBrain/com_apple_MobileAsset_RecoveryOSUpdateBrain.xml
945
923
  asset_type: com.apple.MobileAsset.RecoveryOSUpdateBrain
946
- - url: https://mesu.apple.com/assets/watchOS7PublicSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
947
- asset_type:
948
924
  - url: https://mesu.apple.com/assets/watchOSDeveloperSeed/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain/com_apple_MobileAsset_MobileSoftwareUpdate_UpdateBrain.xml
949
925
  asset_type: com.apple.MobileAsset.MobileSoftwareUpdate.UpdateBrain
950
- - url: https://mesu.apple.com/assets/watchOSDeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
951
- asset_type:
952
- - url: https://mesu.apple.com/carrierseedios7/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
953
- asset_type:
954
- - url: https://mesu.apple.com/carrierseedios7/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
955
- asset_type:
956
- - url: https://mesu.apple.com/carrierseedios8/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
957
- asset_type:
958
- - url: https://mesu.apple.com/carrierseedios8/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
959
- asset_type:
960
- - url: https://mesu.apple.com/ios5carrierseed/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
961
- asset_type:
962
- - url: https://mesu.apple.com/ios5carrierseed/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
963
- asset_type:
964
- - url: https://mesu.apple.com/iossixcarrierseed/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
965
- asset_type:
966
- - url: https://mesu.apple.com/iossixcarrierseed/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
967
- asset_type:
968
- - url: https://mesu.apple.com/systemassets/{build_id}/{system_image_id}/com_apple_MobileAsset_SystemApp/com_apple_MobileAsset_SystemApp.xml
926
+ without_asset_type:
927
+ - https://mesu.apple.com/assets/watchOS7PublicSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
928
+ - https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
929
+ - https://mesu.apple.com/assets/watchOS4DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
930
+ - https://mesu.apple.com/assets/watch/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
931
+ - https://mesu.apple.com/assets/tvOSDeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
932
+ - https://mesu.apple.com/assets/watchOS5DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
933
+ - https://mesu.apple.com/assets/watchOS6AppleSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
934
+ - https://mesu.apple.com/assets/tvOS14PublicSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
935
+ - https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
936
+ - https://mesu.apple.com/assets/watchOS6DeveloperSeed/com_apple_MobileAsset_RecoveryOSUpdate/com_apple_MobileAsset_RecoveryOSUpdate.xml
937
+ - https://mesu.apple.com/assets/watchOS7DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
938
+ - https://mesu.apple.com/assets/watchOSDeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
939
+ - https://mesu.apple.com/carrierseedios7/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
940
+ - https://mesu.apple.com/carrierseedios7/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
941
+ - https://mesu.apple.com/carrierseedios8/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
942
+ - https://mesu.apple.com/carrierseedios8/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
943
+ - https://mesu.apple.com/ios5carrierseed/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
944
+ - https://mesu.apple.com/ios5carrierseed/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
945
+ - https://mesu.apple.com/iossixcarrierseed/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
946
+ - https://mesu.apple.com/assets/tvOS11DeveloperSeed/com_apple_MobileAsset_SoftwareUpdate/com_apple_MobileAsset_SoftwareUpdate.xml
947
+ - https://mesu.apple.com/iossixcarrierseed/assets/com_apple_MobileAsset_SoftwareUpdateDocumentation/com_apple_MobileAsset_SoftwareUpdateDocumentation.xml
948
+ template_assets:
949
+ com_apple_MobileAsset_SystemApp:
950
+ tempalte_url: https://mesu.apple.com/systemassets/{build_id}/{system_image_id}/com_apple_MobileAsset_SystemApp/com_apple_MobileAsset_SystemApp.xml
data/share/nvram.yaml CHANGED
@@ -199,8 +199,8 @@ nvram_variables:
199
199
  - common
200
200
  fmm-mobileme-token-FMM:
201
201
  fmm-mobileme-token-FMM-BridgeHasAccount:
202
- description: If this value is true FMM is handled by the T2 coprocessor. This is
203
- always false on Apple Silicon as there is no bridgeOS device
202
+ description: If this value is true FMM is handled by the T2 coprocessor. This
203
+ is always false on Apple Silicon as there is no bridgeOS device
204
204
  type: boolean
205
205
  platforms:
206
206
  - macOS