summaryrefslogtreecommitdiff
path: root/tools/syscall-table-update.sh
blob: e2702462026b618d9fa83fea9ae2ffc80cee6994 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -eu

cd "$1" && shift

curl --fail -L -o syscall-names.text 'https://raw.githubusercontent.com/hrw/syscalls-table/master/syscall-names.text'

for arch in "$@"; do
    curl --fail -L -o syscalls-$arch "https://raw.githubusercontent.com/hrw/syscalls-table/master/tables/syscalls-$arch"
done