Skip to content

Commit 19d63df

Browse files
committed
it loads!
1 parent 2fd6847 commit 19d63df

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

arch/arm/mach-exynos/spl_boot.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,7 @@ void copy_uboot_to_ram(void)
281281
printascii("\n");
282282
if (copy_bl2)
283283
copy_bl2(offset, size, CONFIG_SYS_TEXT_BASE);
284-
else
285-
printascii("not copying anything\n");
286284

287-
char *b = (char *)CONFIG_SYS_TEXT_BASE;
288-
b[0] = 0xdd;
289285
}
290286

291287
void memzero(void *s, size_t n)
@@ -328,7 +324,7 @@ void board_init_f(unsigned long bootflag)
328324

329325
char *byte = (char *)CONFIG_SYS_TEXT_BASE;
330326
printascii("here's some bytes: ");
331-
for (int i = 0; i < 8192; i++) {
327+
for (int i = 0; i < 1024; i++) {
332328
printhex2(byte[i]);
333329
printascii(" ");
334330
if ((i+1) % 0x20 == 0)

0 commit comments

Comments
 (0)