zte's code,first commit
Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/ap/build/uClibc/libc/sysdeps/linux/i386/crti.S b/ap/build/uClibc/libc/sysdeps/linux/i386/crti.S
new file mode 100644
index 0000000..7dbaaad
--- /dev/null
+++ b/ap/build/uClibc/libc/sysdeps/linux/i386/crti.S
@@ -0,0 +1,31 @@
+.section .init
+.global _init
+.type _init,%function
+_init:
+ pushl %ebp
+ movl %esp, %ebp
+ pushl %ebx
+ call __get_pc_thunk_bx
+ addl $_GLOBAL_OFFSET_TABLE_, %ebx
+
+
+
+.section .fini
+.global _fini
+.type _fini,%function
+_fini:
+ pushl %ebp
+ movl %esp, %ebp
+ pushl %ebx
+ call __get_pc_thunk_bx
+ addl $_GLOBAL_OFFSET_TABLE_, %ebx
+
+
+
+.section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits
+.global __get_pc_thunk_bx
+.hidden __get_pc_thunk_bx
+.type __get_pc_thunk_bx,%function
+__get_pc_thunk_bx:
+ movl (%esp), %ebx
+ ret