blob: 4fe68ce05aaaa5dcdc65220fc57483aeab86484e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* Startup code compliant to the ELF CRIS ABI */
/* The first piece of initialized data. */
int __data_start = 0;
/*
* It is important that this be the first function.
* This file is the first thing in the text section.
*/
void
_start ()
{
/*
* On the stack we have argc. We can calculate argv/envp
* from that and the succeeding stack location, but fix so
* we get the right calling convention (regs in r10/r11).
*
* Please view linux/fs/binfmt_elf.c for a complete
* understanding of this.
*/
__asm__ volatile("pop $r10");
__asm__ volatile("move.d $sp, $r11");
__asm__ volatile("jump start1");
}
void __uClibc_main(int argc, char **argv, char **envp)
__attribute__ ((__noreturn__));
static void
start1 (int argc, char **argv)
{
char** environ;
/* The environment starts just after ARGV. */
environ = &argv[argc + 1];
/*
* If the first thing after ARGV is the arguments
* themselves, there is no environment.
*/
if ((char *) environ == *argv)
/*
* The environment is empty. Make environ
* point at ARGV[ARGC], which is NULL.
*/
--environ;
/* Leave control to the libc */
__uClibc_main(argc, argv, environ);
}
|