2 # SPDX-License-Identifier: GPL-2.0
6 my_abis
=`echo "($3)" | tr ',' '|'`
10 fileguard
=LINUX_USER_ARM_
`basename "$out" | sed \
11 -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
12 -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g'`
13 if echo $out |
grep -q uapi
; then
14 fileguard
="_UAPI$fileguard"
16 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+${my_abis}" "$in" |
sort -n |
(
17 echo "#ifndef ${fileguard}"
18 echo "#define ${fileguard} 1"
21 while read nr abi name entry
; do
22 if [ -z "$offset" ]; then
23 echo "#define TARGET_NR_${prefix}${name} $nr"
25 echo "#define TARGET_NR_${prefix}${name} ($offset + $nr)"
30 echo "#endif /* ${fileguard} */"