| * 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. |
| int main(int argc, char *argv[]) |
| unsigned long long vmlinux_size, vmlinux_load_addr, vmlinuz_load_addr; |
| fprintf(stderr, "Usage: %s <pathname> <vmlinux_load_addr>\n", |
| if (stat(argv[1], &sb) == -1) { |
| /* Convert hex characters to dec number */ |
| if (sscanf(argv[2], "%llx", &vmlinux_load_addr) != 1) { |
| fprintf(stderr, "No matching characters\n"); |
| 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\n", vmlinuz_load_addr); |