tools: patch-image: Added optional size option

Added optional command line option for patch-image tool
Default 16KB size is still maintained as this is an optional argument.
if one wants to specify or increase size they can provide this option.
sample usage: patch-dtb <file> <dtb> [dtb max size]

Signed-off-by: Vishnu Swaroop Duddu <duddu.swaroop@intel.com>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Vishnu Swaroop Duddu 2016-05-12 20:07:29 +05:30 committed by Hauke Mehrtens
parent 63cb2fb88d
commit ee613097be
2 changed files with 24 additions and 12 deletions

View File

@ -35,10 +35,16 @@ int main(int argc, char **argv)
{
int fd, found = 0, len, ret = -1;
char *ptr, *p;
unsigned int search_space;
if (argc != 3) {
fprintf(stderr, "Usage: %s <file> <cmdline>\n", argv[0]);
if (argc <= 2 || argc > 4) {
fprintf(stderr, "Usage: %s <file> <cmdline> [size]\n", argv[0]);
goto err1;
} else if (argc == 3) {
fprintf(stdout, "search space used is default of 16KB\n");
search_space = SEARCH_SPACE;
} else {
search_space = atoi(argv[3]);
}
len = strlen(argv[2]);
if (len + 9 > CMDLINE_MAX) {
@ -47,12 +53,12 @@ int main(int argc, char **argv)
}
if (((fd = open(argv[1], O_RDWR)) < 0) ||
(ptr = (char *) mmap(0, SEARCH_SPACE + CMDLINE_MAX, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
(ptr = (char *) mmap(0, search_space + CMDLINE_MAX, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
fprintf(stderr, "Could not open kernel image");
goto err2;
}
for (p = ptr; p < (ptr + SEARCH_SPACE); p += 4) {
for (p = ptr; p < (ptr + search_space); p += 4) {
if (memcmp(p, "CMDLINE:", 8) == 0) {
found = 1;
p += 8;

View File

@ -30,7 +30,6 @@
#include <sys/stat.h>
#include <string.h>
#define SEARCH_SPACE (16 * 1024)
#define DTB_MAX (16 * 1024)
int main(int argc, char **argv)
@ -38,11 +37,18 @@ int main(int argc, char **argv)
int fd, fddtb, found = 0, len, ret = -1;
char *ptr, *ptrdtb, *p;
struct stat s;
unsigned int search_space , dtb_max_size;
if (argc != 3) {
fprintf(stderr, "Usage: %s <file> <dtb>\n", argv[0]);
if (argc <= 2 || argc > 4) {
fprintf(stderr, "Usage: %s <file> <dtb> [size]\n", argv[0]);
goto err1;
} else if (argc == 3) {
fprintf(stdout, "DT size used is default of 16KB\n");
search_space = dtb_max_size = DTB_MAX;
} else {
search_space = dtb_max_size = atoi(argv[3]);
}
fddtb = open(argv[1], O_RDONLY);
if (!fddtb)
goto err1;
@ -53,24 +59,24 @@ int main(int argc, char **argv)
}
len = s.st_size;
if (len + 8 > DTB_MAX) {
if (len + 8 > dtb_max_size) {
fprintf(stderr, "DTB too big\n");
goto err1;
}
if (((fddtb = open(argv[2], O_RDONLY)) < 0) ||
(ptrdtb = (char *) mmap(0, DTB_MAX, PROT_READ, MAP_SHARED, fddtb, 0)) == (void *) (-1)) {
(ptrdtb = (char *) mmap(0, dtb_max_size, PROT_READ, MAP_SHARED, fddtb, 0)) == (void *) (-1)) {
fprintf(stderr, "Could not open DTB");
goto err2;
}
if (((fd = open(argv[1], O_RDWR)) < 0) ||
(ptr = (char *) mmap(0, SEARCH_SPACE + DTB_MAX, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
(ptr = (char *) mmap(0, search_space + dtb_max_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
fprintf(stderr, "Could not open kernel image");
goto err3;
}
for (p = ptr; p < (ptr + SEARCH_SPACE); p += 4) {
for (p = ptr; p < (ptr + search_space); p += 4) {
if (memcmp(p, "OWRTDTB:", 8) == 0) {
found = 1;
p += 8;
@ -82,7 +88,7 @@ int main(int argc, char **argv)
goto err4;
}
memset(p, 0, DTB_MAX - 8);
memset(p, 0, dtb_max_size - 8);
memcpy(p, ptrdtb, len);
msync(p, len, MS_SYNC|MS_INVALIDATE);
ret = 0;