x86: Simplify syscallhdr.sh
[cascardo/linux.git] / arch / x86 / syscalls / syscallhdr.sh
1 #!/bin/sh
2
3 in="$1"
4 out="$2"
5 my_abis=`echo "($3)" | tr ',' '|'`
6 prefix="$4"
7 offset="$5"
8
9 fileguard=_ASM_X86_`basename "$out" | sed \
10     -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
11     -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g'`
12 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+${my_abis}" "$in" | sort -n | (
13     echo "#ifndef ${fileguard}"
14     echo "#define ${fileguard} 1"
15     echo ""
16
17     while read nr abi name entry ; do
18         echo "#define __NR_${prefix}${name}" $((nr+offset))
19     done
20
21     echo ""
22     echo "#endif /* ${fileguard} */"
23 ) > "$out"