summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2023-11-01 14:50:56 +0100
committerLuca Boccassi <bluca@debian.org>2023-11-01 15:07:54 +0100
commit4561c679bca6d4a016d4e9b5657fb5ffd7902093 (patch)
tree470d8b4f9133eff6e9df30e9d3165ad4391086f8 /tools
parentUpdate hwdb autosuspend rules (diff)
downloadsystemd-4561c679bca6d4a016d4e9b5657fb5ffd7902093.tar.xz
systemd-4561c679bca6d4a016d4e9b5657fb5ffd7902093.zip
tools: syscall tables moved to a subdirectory
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update-syscall-tables.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/update-syscall-tables.sh b/tools/update-syscall-tables.sh
index 5aa8536882..fb861e1b69 100755
--- a/tools/update-syscall-tables.sh
+++ b/tools/update-syscall-tables.sh
@@ -4,8 +4,8 @@ set -eu
cd "${1:?}" && shift
-curl --fail -L -o syscall-list.txt 'https://raw.githubusercontent.com/hrw/syscalls-table/master/syscall-names.text'
+curl --fail -L -o syscall-list.txt 'https://raw.githubusercontent.com/hrw/syscalls-table/master/data/syscall-names.text'
for arch in "$@"; do
- curl --fail -L -o "syscalls-$arch.txt" "https://raw.githubusercontent.com/hrw/syscalls-table/master/tables/syscalls-$arch"
+ curl --fail -L -o "syscalls-$arch.txt" "https://raw.githubusercontent.com/hrw/syscalls-table/master/data/tables/syscalls-$arch"
done