mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-30 23:15:16 -04:00
25 lines
476 B
Text
25 lines
476 B
Text
meta:
|
|
id: insyde_fdc
|
|
title: Insyde Factory Data Copy NVRAM store
|
|
application: Insyde-based UEFI firmware
|
|
file-extension: fdc
|
|
tags:
|
|
- firmware
|
|
license: CC0-1.0
|
|
ks-version: 0.9
|
|
endian: le
|
|
|
|
seq:
|
|
- id: signature
|
|
type: u4
|
|
valid:
|
|
expr: _ == 0x4344465F # _FDC
|
|
- id: fdc_size
|
|
type: u4
|
|
valid:
|
|
expr: _ > len_fdc_store_header.as<u4> and _ < 0xFFFFFFFF
|
|
- id: body
|
|
size: fdc_size - len_fdc_store_header
|
|
instances:
|
|
len_fdc_store_header:
|
|
value: 0x50
|