diff options
| author | Rob Clark <robdclark@chromium.org> | 2025-04-29 23:42:29 +0300 |
|---|---|---|
| committer | Rob Clark <robdclark@chromium.org> | 2025-04-29 23:42:29 +0300 |
| commit | 844e31bbaef7c8a6ff2c0fbac45c0c85b5484482 (patch) | |
| tree | 01d80b723a71bff43ffd866499f497e697a9766a /scripts/make_fit.py | |
| parent | 9d78f02503227d3554d26cf8ca73276105c98f3e (diff) | |
| parent | 0d607a59a0f6593e72630854a8bcb8b01b8dce40 (diff) | |
| download | linux-844e31bbaef7c8a6ff2c0fbac45c0c85b5484482.tar.xz | |
Merge remote-tracking branch 'drm-misc/drm-misc-next' into msm-next
Merge drm-misc-next to get commit Fixes: fec450ca15af ("drm/display:
hdmi: provide central data authority for ACR params").
Signed-off-by: Rob Clark <robdclark@chromium.org>
Diffstat (limited to 'scripts/make_fit.py')
| -rwxr-xr-x | scripts/make_fit.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/make_fit.py b/scripts/make_fit.py index 4a1bb2f55861..1683e5ec6e67 100755 --- a/scripts/make_fit.py +++ b/scripts/make_fit.py @@ -279,7 +279,11 @@ def build_fit(args): if os.path.splitext(fname)[1] != '.dtb': continue - (model, compat, files) = process_dtb(fname, args) + try: + (model, compat, files) = process_dtb(fname, args) + except Exception as e: + sys.stderr.write(f"Error processing {fname}:\n") + raise e for fn in files: if fn not in fdts: |
