5bcb498638
Copy syscall.tbl and syscallhdr.sh from linux/arch/arm/tools/syscalls v5.5 Update syscallhdr.sh to generate QEMU syscall_nr.h Update syscall.c to manage TARGET_NR_arm_sync_file_range as it has replaced TARGET_NR_sync_file_range2 Move existing stuff from linux-user/Makefile.objs to linux-user/arm/Makefile.objs Signed-off-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20200310103403.3284090-9-laurent@vivier.eu> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
32 lines
776 B
Bash
32 lines
776 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
in="$1"
|
|
out="$2"
|
|
my_abis=`echo "($3)" | tr ',' '|'`
|
|
prefix="$4"
|
|
offset="$5"
|
|
|
|
fileguard=LINUX_USER_ARM_`basename "$out" | sed \
|
|
-e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
|
|
-e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g'`
|
|
if echo $out | grep -q uapi; then
|
|
fileguard="_UAPI$fileguard"
|
|
fi
|
|
grep -E "^[0-9A-Fa-fXx]+[[:space:]]+${my_abis}" "$in" | sort -n | (
|
|
echo "#ifndef ${fileguard}"
|
|
echo "#define ${fileguard} 1"
|
|
echo ""
|
|
|
|
while read nr abi name entry ; do
|
|
if [ -z "$offset" ]; then
|
|
echo "#define TARGET_NR_${prefix}${name} $nr"
|
|
else
|
|
echo "#define TARGET_NR_${prefix}${name} ($offset + $nr)"
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
echo "#endif /* ${fileguard} */"
|
|
) > "$out"
|