Blame view

kernel/linux-rt-4.4.41/arch/mips/boot/compressed/calc_vmlinuz_load_addr.c 1.34 KB
5113f6f70   김현기   kernel add
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
  /*
   * Copyright (C) 2010 "Wu Zhangjin" <wuzhangjin@gmail.com>
   *
   * This program is free software; you can redistribute	it and/or modify it
   * under  the terms of	the GNU General	 Public License as published by the
   * Free Software Foundation;  either version 2 of the  License, or (at your
   * option) any later version.
   */
  
  #include <sys/types.h>
  #include <sys/stat.h>
  #include <errno.h>
  #include <stdint.h>
  #include <stdio.h>
  #include <stdlib.h>
  
  int main(int argc, char *argv[])
  {
  	unsigned long long vmlinux_size, vmlinux_load_addr, vmlinuz_load_addr;
  	struct stat sb;
  
  	if (argc != 3) {
  		fprintf(stderr, "Usage: %s <pathname> <vmlinux_load_addr>
  ",
  				argv[0]);
  		return EXIT_FAILURE;
  	}
  
  	if (stat(argv[1], &sb) == -1) {
  		perror("stat");
  		return EXIT_FAILURE;
  	}
  
  	/* Convert hex characters to dec number */
  	errno = 0;
  	if (sscanf(argv[2], "%llx", &vmlinux_load_addr) != 1) {
  		if (errno != 0)
  			perror("sscanf");
  		else
  			fprintf(stderr, "No matching characters
  ");
  
  		return EXIT_FAILURE;
  	}
  
  	vmlinux_size = (uint64_t)sb.st_size;
  	vmlinuz_load_addr = vmlinux_load_addr + vmlinux_size;
  
  	/*
  	 * Align with 16 bytes: "greater than that used for any standard data
  	 * types by a MIPS compiler." -- See MIPS Run Linux (Second Edition).
  	 */
  
  	vmlinuz_load_addr += (16 - vmlinux_size % 16);
  
  	printf("0x%llx
  ", vmlinuz_load_addr);
  
  	return EXIT_SUCCESS;
  }