f4d0ef2
diff --git a/redhat_lsb_trigger.c b/redhat_lsb_trigger.c
f4d0ef2
index 76db260..f76e5a5 100644
f4d0ef2
--- a/redhat_lsb_trigger.c
f4d0ef2
+++ b/redhat_lsb_trigger.c
f4d0ef2
@@ -424,6 +424,102 @@ register void *__thread_self __asm ("g7");
f4d0ef2
 	   : inline_syscall_clobbers, "$20", "$21");		\
f4d0ef2
 	_sc_ret = _sc_0, _sc_err = _sc_19;			\
f4d0ef2
 }
f4d0ef2
+#elif defined __aarch64__
f4d0ef2
+#undef SYS_ify
f4d0ef2
+#define SYS_ify(syscall_name)	(__NR_##syscall_name)
f4d0ef2
+
f4d0ef2
+# undef INLINE_SYSCALL
f4d0ef2
+# define INLINE_SYSCALL(name, nr, args...)				\
f4d0ef2
+  ({ unsigned long _sys_result = INTERNAL_SYSCALL (name, , nr, args);	\
f4d0ef2
+     if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (_sys_result, ), 0))\
f4d0ef2
+       {								\
f4d0ef2
+	 __set_errno (INTERNAL_SYSCALL_ERRNO (_sys_result, ));		\
f4d0ef2
+	 _sys_result = (unsigned long) -1;				\
f4d0ef2
+       }								\
f4d0ef2
+     (long) _sys_result; })
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL_DECL
f4d0ef2
+# define INTERNAL_SYSCALL_DECL(err) do { } while (0)
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL_RAW
f4d0ef2
+# define INTERNAL_SYSCALL_RAW(name, err, nr, args...)		\
f4d0ef2
+  ({ unsigned long _sys_result;					\
f4d0ef2
+     {								\
f4d0ef2
+       LOAD_ARGS_##nr (args)					\
f4d0ef2
+       register long _x8 asm ("x8") = (name);			\
f4d0ef2
+       asm volatile ("svc	0	// syscall " # name     \
f4d0ef2
+		     : "+r" (_x0), "+r" (_x8)			\
f4d0ef2
+		     : ASM_ARGS_##nr				\
f4d0ef2
+		     : "memory", CLOBBER_ARGS_##nr);		\
f4d0ef2
+       _sys_result = _x0;					\
f4d0ef2
+     }								\
f4d0ef2
+     (long) _sys_result; })
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL
f4d0ef2
+# define INTERNAL_SYSCALL(name, err, nr, args...)		\
f4d0ef2
+	INTERNAL_SYSCALL_RAW(SYS_ify(name), err, nr, args)
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL_ERROR_P
f4d0ef2
+# define INTERNAL_SYSCALL_ERROR_P(val, err) \
f4d0ef2
+  ((unsigned long) (val) >= (unsigned long) -4095)
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL_ERRNO
f4d0ef2
+# define INTERNAL_SYSCALL_ERRNO(val, err)	(-(val))
f4d0ef2
+
f4d0ef2
+# define CLOBBER_ARGS_0       CLOBBER_ARGS_1
f4d0ef2
+# define CLOBBER_ARGS_1 "x1", CLOBBER_ARGS_2
f4d0ef2
+# define CLOBBER_ARGS_2 "x2", CLOBBER_ARGS_3
f4d0ef2
+# define CLOBBER_ARGS_3 "x3", CLOBBER_ARGS_4
f4d0ef2
+# define CLOBBER_ARGS_4 "x4", CLOBBER_ARGS_5
f4d0ef2
+# define CLOBBER_ARGS_5 "x5", CLOBBER_ARGS_6
f4d0ef2
+# define CLOBBER_ARGS_6 "x6", CLOBBER_ARGS_7
f4d0ef2
+# define CLOBBER_ARGS_7 \
f4d0ef2
+  "x7", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18"
f4d0ef2
+
f4d0ef2
+# define LOAD_ARGS_0()				\
f4d0ef2
+  register long _x0 asm ("x0");
f4d0ef2
+
f4d0ef2
+# define ASM_ARGS_0
f4d0ef2
+# define LOAD_ARGS_1(x0)			\
f4d0ef2
+  long _x0tmp = (long) (x0);			\
f4d0ef2
+  LOAD_ARGS_0 ()				\
f4d0ef2
+  _x0 = _x0tmp;
f4d0ef2
+# define ASM_ARGS_1	"r" (_x0)
f4d0ef2
+# define LOAD_ARGS_2(x0, x1)			\
f4d0ef2
+  long _x1tmp = (long) (x1);			\
f4d0ef2
+  LOAD_ARGS_1 (x0)				\
f4d0ef2
+  register long _x1 asm ("x1") = _x1tmp;
f4d0ef2
+# define ASM_ARGS_2	ASM_ARGS_1, "r" (_x1)
f4d0ef2
+# define LOAD_ARGS_3(x0, x1, x2)		\
f4d0ef2
+  long _x2tmp = (long) (x2);			\
f4d0ef2
+  LOAD_ARGS_2 (x0, x1)				\
f4d0ef2
+  register long _x2 asm ("x2") = _x2tmp;
f4d0ef2
+# define ASM_ARGS_3	ASM_ARGS_2, "r" (_x2)
f4d0ef2
+# define LOAD_ARGS_4(x0, x1, x2, x3)		\
f4d0ef2
+  long _x3tmp = (long) (x3);			\
f4d0ef2
+  LOAD_ARGS_3 (x0, x1, x2)			\
f4d0ef2
+  register long _x3 asm ("x3") = _x3tmp;
f4d0ef2
+# define ASM_ARGS_4	ASM_ARGS_3, "r" (_x3)
f4d0ef2
+# define LOAD_ARGS_5(x0, x1, x2, x3, x4)	\
f4d0ef2
+  long _x4tmp = (long) (x4);			\
f4d0ef2
+  LOAD_ARGS_4 (x0, x1, x2, x3)			\
f4d0ef2
+  register long _x4 asm ("x4") = _x4tmp;
f4d0ef2
+# define ASM_ARGS_5	ASM_ARGS_4, "r" (_x4)
f4d0ef2
+# define LOAD_ARGS_6(x0, x1, x2, x3, x4, x5)	\
f4d0ef2
+  long _x5tmp = (long) (x5);			\
f4d0ef2
+  LOAD_ARGS_5 (x0, x1, x2, x3, x4)		\
f4d0ef2
+  register long _x5 asm ("x5") = _x5tmp;
f4d0ef2
+# define ASM_ARGS_6	ASM_ARGS_5, "r" (_x5)
f4d0ef2
+# define LOAD_ARGS_7(x0, x1, x2, x3, x4, x5, x6)\
f4d0ef2
+  long _x6tmp = (long) (x6);			\
f4d0ef2
+  LOAD_ARGS_6 (x0, x1, x2, x3, x4, x5)		\
f4d0ef2
+  register long _x6 asm ("x6") = _x6tmp;
f4d0ef2
+# define ASM_ARGS_7	ASM_ARGS_6, "r" (_x6)
f4d0ef2
+
f4d0ef2
+# undef INTERNAL_SYSCALL_NCS
f4d0ef2
+# define INTERNAL_SYSCALL_NCS(number, err, nr, args...)	\
f4d0ef2
+	INTERNAL_SYSCALL_RAW (number, err, nr, args)
f4d0ef2
+
f4d0ef2
 #endif
f4d0ef2
 
f4d0ef2
 #ifdef __i386__
f4d0ef2
@@ -539,10 +635,14 @@ int main (int argc, char **argv)
f4d0ef2
       p = mempcpy (p, LSBLDSO, sizeof LSBLDSO - 1);
f4d0ef2
       *p++ = '.';
f4d0ef2
       strcpy (p, LSBVER);
f4d0ef2
+#if defined(__NR_symlink)
f4d0ef2
       if (is_ia64 ())
f4d0ef2
 	INTERNAL_SYSCALL (symlink, err, 2, "/emul/ia32-linux/lib/" LDSO, buf);
f4d0ef2
       else
f4d0ef2
 	INTERNAL_SYSCALL (symlink, err, 2, LDSO, buf);
f4d0ef2
+#elif defined(__NR_symlinkat)
f4d0ef2
+      INTERNAL_SYSCALL (symlinkat, err, 3, AT_FDCWD, LDSO, buf);
f4d0ef2
+#endif
f4d0ef2
       p = NULL;
f4d0ef2
     }
f4d0ef2
   INTERNAL_SYSCALL (exit, err, 1, 0);
b8280d2
@@ -682,7 +682,7 @@ int __libc_start_main (int argc, char **argv, char **ev,
b8280d2
 		       void *auxvec, void (*rtld_fini) (void),
b8280d2
 		       struct startup_info *stinfo,
b8280d2
 		       char **stack_on_entry)
b8280d2
-#elif defined __arm__
b8280d2
+#elif defined __arm__ || defined __aarch64__
b8280d2
 
b8280d2
 int ___libc_start_main (int (*main) (int argc, char **argv),
b8280d2
                        int argc, char **argv,