38 lines · bash
1#!/bin/bash2# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause3 4TOOL=$(dirname $(realpath $0))/ynl-gen-c.py5 6force=7search=8 9while [ ! -z "$1" ]; do10 case "$1" in11 -f ) force=yes; shift ;;12 -p ) search=$2; shift 2 ;;13 * ) echo "Unrecognized option '$1'"; exit 1 ;;14 esac15done16 17KDIR=$(dirname $(dirname $(dirname $(dirname $(realpath $0)))))18pushd ${search:-$KDIR} >>/dev/null19 20files=$(git grep --files-with-matches '^/\* YNL-GEN \(kernel\|uapi\|user\)')21for f in $files; do22 # params: 0 1 2 323 # $YAML YNL-GEN kernel $mode24 params=( $(git grep -B1 -h '/\* YNL-GEN' $f | sed 's@/\*\(.*\)\*/@\1@') )25 args=$(sed -n 's@/\* YNL-ARG \(.*\) \*/@\1@p' $f)26 27 if [ $f -nt ${params[0]} -a -z "$force" ]; then28 echo -e "\tSKIP $f"29 continue30 fi31 32 echo -e "\tGEN ${params[2]}\t$f"33 $TOOL --cmp-out --mode ${params[2]} --${params[3]} \34 --spec $KDIR/${params[0]} $args -o $f35done36 37popd >>/dev/null38