Author: Jaret Cantu <jaret.cantu@timesys.com>
Date:   Wed Jan 14 14:30:15 EST 2015

    Define NR_name_to_handle_at catchall for other architectures.

    The name_to_handle_at syscall number will be filled in automatically
    for most more common architectures (x86, arm, powerpc) but it is not
    for mips or sh or the like.

    As a catch-all, default to the only value for __NR_name_to_handle_at
    found in modern kernels (include/uapi/asm-generic/unistd.h).  This
    prevents a build error for this architectures.
    

--- eudev-1.6/src/libudev/missing.h.orig	2015-01-14 14:22:48.428524069 -0500
+++ eudev-1.6/src/libudev/missing.h	2015-01-14 14:24:33.146517372 -0500
@@ -235,7 +235,7 @@
 #  endif
 #else
 #  ifndef __NR_name_to_handle_at
-#    error __NR_name_to_handle_at is not defined
+#    define __NR_name_to_handle_at 264
 #  endif
 #endif
 
