diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /scripts/mod/mk_elfconfig.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'scripts/mod/mk_elfconfig.c')
-rw-r--r-- | scripts/mod/mk_elfconfig.c | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/scripts/mod/mk_elfconfig.c b/scripts/mod/mk_elfconfig.c new file mode 100644 index 000000000000..de2aabf89fb3 --- /dev/null +++ b/scripts/mod/mk_elfconfig.c | |||
@@ -0,0 +1,65 @@ | |||
1 | #include <stdio.h> | ||
2 | #include <stdlib.h> | ||
3 | #include <string.h> | ||
4 | #include <elf.h> | ||
5 | |||
6 | int | ||
7 | main(int argc, char **argv) | ||
8 | { | ||
9 | unsigned char ei[EI_NIDENT]; | ||
10 | union { short s; char c[2]; } endian_test; | ||
11 | |||
12 | if (argc != 2) { | ||
13 | fprintf(stderr, "Error: no arch\n"); | ||
14 | } | ||
15 | if (fread(ei, 1, EI_NIDENT, stdin) != EI_NIDENT) { | ||
16 | fprintf(stderr, "Error: input truncated\n"); | ||
17 | return 1; | ||
18 | } | ||
19 | if (memcmp(ei, ELFMAG, SELFMAG) != 0) { | ||
20 | fprintf(stderr, "Error: not ELF\n"); | ||
21 | return 1; | ||
22 | } | ||
23 | switch (ei[EI_CLASS]) { | ||
24 | case ELFCLASS32: | ||
25 | printf("#define KERNEL_ELFCLASS ELFCLASS32\n"); | ||
26 | break; | ||
27 | case ELFCLASS64: | ||
28 | printf("#define KERNEL_ELFCLASS ELFCLASS64\n"); | ||
29 | break; | ||
30 | default: | ||
31 | abort(); | ||
32 | } | ||
33 | switch (ei[EI_DATA]) { | ||
34 | case ELFDATA2LSB: | ||
35 | printf("#define KERNEL_ELFDATA ELFDATA2LSB\n"); | ||
36 | break; | ||
37 | case ELFDATA2MSB: | ||
38 | printf("#define KERNEL_ELFDATA ELFDATA2MSB\n"); | ||
39 | break; | ||
40 | default: | ||
41 | abort(); | ||
42 | } | ||
43 | |||
44 | if (sizeof(unsigned long) == 4) { | ||
45 | printf("#define HOST_ELFCLASS ELFCLASS32\n"); | ||
46 | } else if (sizeof(unsigned long) == 8) { | ||
47 | printf("#define HOST_ELFCLASS ELFCLASS64\n"); | ||
48 | } | ||
49 | |||
50 | endian_test.s = 0x0102; | ||
51 | if (memcmp(endian_test.c, "\x01\x02", 2) == 0) | ||
52 | printf("#define HOST_ELFDATA ELFDATA2MSB\n"); | ||
53 | else if (memcmp(endian_test.c, "\x02\x01", 2) == 0) | ||
54 | printf("#define HOST_ELFDATA ELFDATA2LSB\n"); | ||
55 | else | ||
56 | abort(); | ||
57 | |||
58 | if ((strcmp(argv[1], "v850") == 0) || (strcmp(argv[1], "h8300") == 0)) | ||
59 | printf("#define MODULE_SYMBOL_PREFIX \"_\"\n"); | ||
60 | else | ||
61 | printf("#define MODULE_SYMBOL_PREFIX \"\"\n"); | ||
62 | |||
63 | return 0; | ||
64 | } | ||
65 | |||