-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 204610 b: refs/heads/master c: c853d94 h: refs/heads/master v: v3
- Loading branch information
Wu Zhangjin
authored and
Ralf Baechle
committed
Aug 5, 2010
1 parent
cbad48e
commit 1113e96
Showing
3 changed files
with
62 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 51f1336d4dbd0935d873761f7f267c3f5abc9bd6 | ||
refs/heads/master: c853d945d3e0cadf60da03106f7d9bbf1346a518 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* 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[]) | ||
{ | ||
struct stat sb; | ||
uint64_t vmlinux_size, vmlinux_load_addr, vmlinuz_load_addr; | ||
|
||
if (argc != 3) { | ||
fprintf(stderr, "Usage: %s <pathname> <vmlinux_load_addr>\n", | ||
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\n"); | ||
|
||
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\n", vmlinuz_load_addr); | ||
|
||
return EXIT_SUCCESS; | ||
} |