Blame view

scripts/mod/mk_elfconfig.c 1.45 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
  #include <elf.h>
  
  int
  main(int argc, char **argv)
  {
62070fa42   Sam Ravnborg   kbuild: kill trai...
9
  	unsigned char ei[EI_NIDENT];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	union { short s; char c[2]; } endian_test;
  
  	if (argc != 2) {
  		fprintf(stderr, "Error: no arch
  ");
  	}
  	if (fread(ei, 1, EI_NIDENT, stdin) != EI_NIDENT) {
  		fprintf(stderr, "Error: input truncated
  ");
  		return 1;
  	}
  	if (memcmp(ei, ELFMAG, SELFMAG) != 0) {
  		fprintf(stderr, "Error: not ELF
  ");
  		return 1;
  	}
  	switch (ei[EI_CLASS]) {
  	case ELFCLASS32:
  		printf("#define KERNEL_ELFCLASS ELFCLASS32
  ");
  		break;
  	case ELFCLASS64:
  		printf("#define KERNEL_ELFCLASS ELFCLASS64
  ");
  		break;
  	default:
6803dc0ea   Sam Ravnborg   kbuild: replace a...
36
  		exit(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
38
39
40
41
42
43
44
45
46
47
  	}
  	switch (ei[EI_DATA]) {
  	case ELFDATA2LSB:
  		printf("#define KERNEL_ELFDATA ELFDATA2LSB
  ");
  		break;
  	case ELFDATA2MSB:
  		printf("#define KERNEL_ELFDATA ELFDATA2MSB
  ");
  		break;
  	default:
6803dc0ea   Sam Ravnborg   kbuild: replace a...
48
  		exit(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  	}
  
  	if (sizeof(unsigned long) == 4) {
  		printf("#define HOST_ELFCLASS ELFCLASS32
  ");
  	} else if (sizeof(unsigned long) == 8) {
  		printf("#define HOST_ELFCLASS ELFCLASS64
  ");
  	}
  
  	endian_test.s = 0x0102;
  	if (memcmp(endian_test.c, "\x01\x02", 2) == 0)
  		printf("#define HOST_ELFDATA ELFDATA2MSB
  ");
  	else if (memcmp(endian_test.c, "\x02\x01", 2) == 0)
  		printf("#define HOST_ELFDATA ELFDATA2LSB
  ");
  	else
6803dc0ea   Sam Ravnborg   kbuild: replace a...
67
  		exit(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68

f606ddf42   Adrian Bunk   remove the v850 port
69
  	if ((strcmp(argv[1], "h8300") == 0)
1394f0322   Bryan Wu   blackfin architec...
70
  	    || (strcmp(argv[1], "blackfin") == 0))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
72
  		printf("#define MODULE_SYMBOL_PREFIX \"_\"
  ");
62070fa42   Sam Ravnborg   kbuild: kill trai...
73
  	else
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74
75
76
77
78
  		printf("#define MODULE_SYMBOL_PREFIX \"\"
  ");
  
  	return 0;
  }