Lines Matching +full:a +full:- +full:z0 +full:- +full:9 +full:- +full:_
2 # SPDX-License-Identifier: GPL-2.0-only
4 # Generate a syscall number header.
15 set -e
18 echo >&2 "usage: $0 [--abis ABIS] [--prefix PREFIX] INFILE OUTFILE" >&2
24 echo >&2 " --abis ABIS ABI(s) to handle (By default, all lines are handled)"
25 echo >&2 " --prefix PREFIX The prefix to the macro like __NR_<PREFIX><NAME>"
33 while [ $# -gt 0 ]
36 --abis)
39 --prefix)
42 -*)
50 if [ $# -ne 2 ]; then
58 sed -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
59 -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g')
61 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | sort -n | {