summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/mktccboot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mktccboot.c b/tools/mktccboot.c
index 8c2e73d5f2..e135b7e506 100644
--- a/tools/mktccboot.c
+++ b/tools/mktccboot.c
@@ -161,7 +161,8 @@ int main(int argc, char *argv[])
161 /* TODO: Verify it's a LDR instruction */ 161 /* TODO: Verify it's a LDR instruction */
162 origoffset = (ldr&0xfff) + 8; 162 origoffset = (ldr&0xfff) + 8;
163 163
164 printf("original firmware entry point: 0x%08x\n",get_uint32le(image + origoffset)); 164 printf("original firmware entry point: 0x%08x\n",
165 (unsigned int) get_uint32le(image + origoffset));
165 printf("New entry point: 0x%08x\n",0x20000000 + inlength + 8); 166 printf("New entry point: 0x%08x\n",0x20000000 + inlength + 8);
166 167
167 /* Save the original firmware entry point at the start of the bootloader image */ 168 /* Save the original firmware entry point at the start of the bootloader image */