12345678910111213141516171819202122232425 |
- #!/bin/sh
- UNISTD_H_PATH=$TOPDIR/include/asm/unistd.h
- ( echo "#include \"$UNISTD_H_PATH\"" ;
- $CC -E -dN $UNISTD_H_PATH |
- sed -ne 's/^[ ]*#define[ ]*__NR_\([A-Za-z0-9_]*\).*/UCLIBC_\1 __NR_\1/gp'
- ) |
- $CC -E - |
- ( echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" ; echo ;
- echo "#ifndef _SYSCALL_H" ;
- echo "# error \"Never use <bits/syscall.h> directly; include <sys/syscall.h> instead.\"" ;
- echo "#endif" ; echo ;
- sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\(.*\)/#define __NR_\1 \2\
- #define SYS_\1 __NR_\1\
- #define __STR_NR_\1 \"\2\"/gp'
- )
|