summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/dtc/python3-dtschema-wrapper/dt-doc-validate
blob: 2aa57851c7e110e46cc893fc6808ddd6caec9a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# dt-doc-validate wrapper to allow kernel dt-validation to pass
#
# Copyright (C) 2021 Bruce Ashfield <bruce.ashfield@gmail.com>
# License: MIT (see COPYING.MIT at the root of the repository for terms)

for arg; do
    case "$arg" in
        --version)
            echo "v2021.10"
            ;;
    esac
done

# TBD: left for future consideration
# exec dt-doc-validate.real "$@"

# we always succeed
exit 0