OSDN Git Service

Just take whatever the kernel headers gave us, spaces and all. This is
authorEric Andersen <andersen@codepoet.org>
Tue, 3 Jul 2001 03:04:00 +0000 (03:04 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 3 Jul 2001 03:04:00 +0000 (03:04 -0000)
to accomodate arm, where rmk has made the syscall numbers be very very
strangely setup,
 -Erik

extra/scripts/gen_bits_syscall_h.sh

index 51f68fc..bb31914 100755 (executable)
@@ -19,7 +19,7 @@ $CC -E - |
   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 SYS_\1 \2\
+  sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\(.*\)/#define SYS_\1 \2\
 #define __NR_\1 \2\
 #define __STR_NR_\1 \"\2\"/gp'
 )