Re: [PATCH v2 1/4] scripts: add a script to generate syscall_nr.h
On 3/14/20 4:39 AM, Laurent Vivier wrote: > +qemu_arch() > +{ > +case "$1" in > +arm64) > +echo "aarch64" > +;; > +*) > +upper "$1" > +;; > +esac > +} I think you can drop the upper here. That distinction is confusing. Anyway, it's only use applies
[PATCH v2 1/4] scripts: add a script to generate syscall_nr.h
This script is needed for targets based on asm-generic syscall numbers generation Signed-off-by: Laurent Vivier Reviewed-by: Alistair Francis Reviewed-by: Taylor Simpson --- Notes: v2: add comments suggested by Taylor scripts/gensyscalls.sh | 102