2 * Copyright (C) 2010 "Wu Zhangjin" <wuzhangjin@gmail.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
10 #include <sys/types.h>
16 #include "../../../../include/linux/sizes.h"
18 int main(int argc
, char *argv
[])
20 unsigned long long vmlinux_size
, vmlinux_load_addr
, vmlinuz_load_addr
;
24 fprintf(stderr
, "Usage: %s <pathname> <vmlinux_load_addr>\n",
29 if (stat(argv
[1], &sb
) == -1) {
34 /* Convert hex characters to dec number */
36 if (sscanf(argv
[2], "%llx", &vmlinux_load_addr
) != 1) {
40 fprintf(stderr
, "No matching characters\n");
45 vmlinux_size
= (uint64_t)sb
.st_size
;
46 vmlinuz_load_addr
= vmlinux_load_addr
+ vmlinux_size
;
49 * Align with 64KB: KEXEC needs load sections to be aligned to PAGE_SIZE,
50 * which may be as large as 64KB depending on the kernel configuration.
53 vmlinuz_load_addr
+= (SZ_64K
- vmlinux_size
% SZ_64K
);
55 printf("0x%llx\n", vmlinuz_load_addr
);