]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tools: syscall tables moved to a subdirectory
authorLuca Boccassi <bluca@debian.org>
Wed, 1 Nov 2023 13:50:56 +0000 (13:50 +0000)
committerLuca Boccassi <bluca@debian.org>
Wed, 1 Nov 2023 14:07:54 +0000 (14:07 +0000)
tools/update-syscall-tables.sh

index 5aa85368825a8731e5e892e86a7323d238aaabed..fb861e1b69637eed901d5621394fbd29d8ff325a 100755 (executable)
@@ -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