From: Luca Boccassi Date: Wed, 1 Nov 2023 13:50:56 +0000 (+0000) Subject: tools: syscall tables moved to a subdirectory X-Git-Tag: v255-rc1~50^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4561c679bca6d4a016d4e9b5657fb5ffd7902093;p=thirdparty%2Fsystemd.git tools: syscall tables moved to a subdirectory --- diff --git a/tools/update-syscall-tables.sh b/tools/update-syscall-tables.sh index 5aa85368825..fb861e1b696 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