procd: fix seccomp build on some architectures
authorhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Aug 2015 20:37:47 +0000 (20:37 +0000)
committerhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Aug 2015 20:37:47 +0000 (20:37 +0000)
commit5cf0777874aa4622ecf06f7689cd5003d3dfa403
treed732eeb29ece34915a2aa5418be14eba93ca0ee0
parent596e461a6ca2bb94914227de3d82b0b0b688024f
procd: fix seccomp build on some architectures

fix generating syscall-names.h

Sometimes the syscall number is not defined with a number but with an
offset to an other syscall and then make_syscall_h.sh created some
broken header file.

For example the bit/syscall.h from musl for i386 has this:

  #define __NR_timer_create     259
  #define __NR_timer_settime    (__NR_timer_create+1)

With this patch the resulting array looks like this:

 [259] = "timer_create",
 [(__NR_timer_create+1)] = "timer_settime",

This closes #20195.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46612 3c298f89-4303-0410-b956-a3cf2f4a3e73
package/system/procd/Makefile