1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 09:21:26 +03:00

basic/missing-syscall: add regen instructions

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2021-04-28 15:35:44 +02:00
parent 84e8edec30
commit e7702c20aa
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,9 @@
/* SPDX-License-Identifier: LGPL-2.1-or-later
* This file is generated. Do not edit! */
* This file is generated by src/basic/missing_syscalls.py. Do not edit!
*
* Use 'ninja -C build update-syscall-tables' to download new syscall tables,
* and 'ninja -C build update-syscall-header' to regenerate this file.
*/
/* Note: if this code looks strange, this is because it is derived from the same
* template as the per-syscall blocks below. */

View File

@ -128,7 +128,11 @@ def print_syscall_def(syscall, tables, out):
def print_syscall_defs(syscalls, tables, out):
print('''\
/* SPDX-License-Identifier: LGPL-2.1-or-later
* This file is generated. Do not edit! */
* This file is generated by src/basic/missing_syscalls.py. Do not edit!
*
* Use 'ninja -C build update-syscall-tables' to download new syscall tables,
* and 'ninja -C build update-syscall-header' to regenerate this file.
*/
''',
file=out)
print(ARCH_CHECK, file=out)