#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # Linux kernel symbol namespace import generator # # This script requires a minimum spatch version.
SPATCH_REQ_VERSION="1.0.4"
DIR="$(dirname $(readlink -f $0))/.."
SPATCH="`which ${SPATCH:=spatch}`" if [ ! -x "$SPATCH" ]; then echo'spatch is part of the Coccinelle project and is available at http://coccinelle.lip6.fr/'
exit 1 fi
SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
if ! { echo"$SPATCH_REQ_VERSION"; echo"$SPATCH_VERSION"; } | sort -CV ; then echo"spatch needs to be version $SPATCH_REQ_VERSION or higher"
exit 1 fi
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.