Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/arch/arm/crt0.S

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File size: 265 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #
2 # arch/arm/crt0.S
3 #
4 # void _start(void)
5 # {
6 # __libc_init(elf_structure, atexit_ptr);
7 # }
8 #
9
10 .text
11 .balign 4
12 .type _start,#function
13 .globl _start
14
15 #ifdef __thumb__
16 .thumb_func
17 #endif
18
19 _start: mov r0, sp
20 mov r1, #0
21 bl __libc_init
22
23 .size _start,.-_start