Blame view

kernel/linux-imx6_3.14.28/scripts/mod/mk_elfconfig.c 1.21 KB
6b13f685e   김민수   BSP 최초 추가
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
  #include <elf.h>
  
  int
  main(int argc, char **argv)
  {
  	unsigned char ei[EI_NIDENT];
  	union { short s; char c[2]; } endian_test;
  
  	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:
  		exit(1);
  	}
  	switch (ei[EI_DATA]) {
  	case ELFDATA2LSB:
  		printf("#define KERNEL_ELFDATA ELFDATA2LSB
  ");
  		break;
  	case ELFDATA2MSB:
  		printf("#define KERNEL_ELFDATA ELFDATA2MSB
  ");
  		break;
  	default:
  		exit(1);
  	}
  
  	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
  		exit(1);
  
  	return 0;
  }