Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validator #5

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Validator #5

wants to merge 2 commits into from

Conversation

sjg20
Copy link
Collaborator

@sjg20 sjg20 commented Nov 1, 2023

Initial FIT validator

This needs to be expanded to include the full schema.

sjg20 added 2 commits November 1, 2023 13:07
Add the build/ directory to this file so that it doesn't show up in
'git status'.

Signed-off-by: Simon Glass <[email protected]>
This comprises a generic FDT validator and an initial schema for FIT.
Both are incomplete, but this is a good starting point for completing
the validator.
Copy link

netlify bot commented Nov 1, 2023

Deploy Preview for fluffy-chebakia-3fa329 ready!

Name Link
🔨 Latest commit d0c3cd9
🔍 Latest deploy log https://app.netlify.com/sites/fluffy-chebakia-3fa329/deploys/6542aac9d77ffd0008ed7328
😎 Deploy Preview https://deploy-preview-5--fluffy-chebakia-3fa329.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@sjg20
Copy link
Collaborator Author

sjg20 commented Jun 5, 2024

Result from test by Chasel:

fdtdump UniversalPayload.fit

**** fdtdump is a low-level debugging tool, not meant for general use.
**** If you want to decompile a dtb, you probably want
**** dtc -I dtb -O dts

/dts-v1/;
// magic: 0xd00dfeed
// totalsize: 0x1000 (4096)
// off_dt_struct: 0x40
// off_dt_strings: 0x3fc
// off_mem_rsvmap: 0x30
// version: 17
// last_comp_version: 16
// boot_cpuid_phys: 0x0
// size_dt_strings: 0xbe
// size_dt_struct: 0x3bc

/ {
description = "Uefi OS Loader";
timestamp = <0x664da66a>;
size = <0x004ec000>;
spec-version = <0x00000090>;
build-revision = <0x00010105>;
images {
tianocore {
description = "Uefi Universal Payload";
project = "tianocore";
arch = "x86_64";
type = "flat-binary";
producer = "intel";
data-offset = <0x00001000>;
data-size = <0x00010000>;
reloc-start = <0x0000fd20>;
entry-start = <0x00000000 0x008014dc>;
load = <0x00000000 0x00800000>;
};
uefi-fv {
description = "UEFI Firmware Volume";
type = "flat-binary";
arch = "X64";
project = "tianocore";
compression = "none";
data-offset = <0x00011000>;
data-size = <0x0033c000>;
};
bds-fv {
description = "BDS Firmware Volume";
type = "flat-binary";
arch = "X64";
project = "tianocore";
compression = "none";
data-offset = <0x0034d000>;
data-size = <0x00080000>;
};
network-fv {
description = "Network Firmware Volume";
type = "flat-binary";
arch = "X64";
project = "tianocore";
compression = "none";
data-offset = <0x003cd000>;
data-size = <0x0011f000>;
};
};
configurations {
default = "conf-1";
conf-1 {
firmware = "tianocore";
require-fit;
};
};
};

python fit_validate.py ../UniversalPayload.fit
https://github.com/open-source-firmware/flat-image-tree/pull/5/files

../UniversalPayload.fit:
/: Unexpected property 'size', valid list is (timestamp, description, #address-cells)
/: Unexpected property 'spec-version', valid list is (timestamp, description, #address-cells)
/: Unexpected property 'build-revision ', valid list is (timestamp, description, #address-cells)
/: Required property '#address-cells' missing
/images/tianocore: Node name 'tianocore' does not match pattern '^image-(\d)+$'
/images/tianocore: Unexpected property 'project ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/tianocore: Unexpected property 'arch ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/tianocore: Unexpected property 'type ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/tianocore: Unexpected property 'producer ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/tianocore: Required property 'arch' missing
/images/tianocore: Required property 'type' missing
/images/tianocore: Required property 'os' missing
/images/tianocore: Required property 'project' missing
/images/uefi-fv: Node name 'uefi-fv' does not match pattern '^image-(\d)+$'
/images/uefi-fv: Unexpected property 'project ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/uefi-fv: Required property 'os' missing
/images/uefi-fv: Required property 'project' missing
/images/bds-fv: Node name 'bds-fv' does not match pattern '^image-(\d)+$'
/images/bds-fv: Unexpected property 'project ', valid list is (description, timestamp, arch, type, compression, data-offset, data-size, os, load, project, capabilities, producer, uncomp-size, entry-start, entry, reloc-start)
/images/bds-fv: Required property 'os' missing
/images/bds-fv: Required property 'project' missing
/configurations: Unexpected property 'default ', valid list is (default)
/configurations/conf-1: Node name 'conf-1' does not match pattern '^config-(\d)+$'
/configurations/conf-1: Required property 'description' missing

@sjg20
Copy link
Collaborator Author

sjg20 commented Jun 5, 2024

My guess is that the line endings are not working and this is running on Windows. I will need to break out my Windows VM and figure out what is missing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant