[U-Boot-Users] [PATCH] trivial bugfix, #ifdef CONFIG_SKIP_LOWLEVEL_INIT added in arm920t/start.S

13 Oct
2005
13 Oct
'05
7:15 p.m.
The ifdef around cpu_init_crit was added, otherwise a reference to "lowlevel_init" still exists and could not be resolved by the linker.
Best regards Peter Menzebach
CHANGELOG: Patch by Peter Menzebach, 2005-10-13 ifdef CONFIG_SKIP_LOWLEVEL_INIT around cpu_init_crit added in cpu/arm920t/start.S
--- u-boot/cpu/arm920t/start.S.orig 2005-10-06 23:47:43.000000000 +0200 +++ u-boot/cpu/arm920t/start.S 2005-10-13 18:56:27.000000000 +0200 @@ -237,6 +237,7 @@ */
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT cpu_init_crit: /* * flush v4 I/D caches @@ -264,7 +265,7 @@ bl lowlevel_init mov lr, ip mov pc, lr - +#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
/* *************************************************************************
7146
Age (days ago)
7146
Last active (days ago)
0 comments
1 participants
participants (1)
-
Peter Menzebach