summaryrefslogtreecommitdiff
path: root/tools/syscall-table-update.sh
blob: a6d7d14732c7211cea4d0a55cc4f37949dc5eef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
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