aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/u-boot/u-boot-2009.01
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-02-15 11:40:45 -0700
committerTom Rini <tom_rini@mentor.com>2011-02-15 12:16:13 -0700
commiteaff6a9b68af367d45ac269c9a3d15095da52b0f (patch)
tree7d3f4d5e0c67373a0d284ac4fbabc8642b1b573f /recipes/u-boot/u-boot-2009.01
parent9993897bd4d578d4d90e13626cac46af221d926f (diff)
downloadopenembedded-eaff6a9b68af367d45ac269c9a3d15095da52b0f.tar.gz
u-boot 2009.01: Fix 'weak' issues
Based on existing patches for other boards. Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'recipes/u-boot/u-boot-2009.01')
-rw-r--r--recipes/u-boot/u-boot-2009.01/dont-inline-weak-symbols.patch54
1 files changed, 54 insertions, 0 deletions
diff --git a/recipes/u-boot/u-boot-2009.01/dont-inline-weak-symbols.patch b/recipes/u-boot/u-boot-2009.01/dont-inline-weak-symbols.patch
new file mode 100644
index 0000000000..fd1dcab708
--- /dev/null
+++ b/recipes/u-boot/u-boot-2009.01/dont-inline-weak-symbols.patch
@@ -0,0 +1,54 @@
+Patch initially created by Ron Lee and archived in OE patchwork at
+http://patchwork.openembedded.org/patch/1534/.
+
+GCC 4.4 complains about this now.
+
+Signed-off-by: Ron Lee <ron@debian.org>
+---
+ lib_arm/board.c | 18 +++++++++---------
+ 1 files changed, 9 insertions(+), 9 deletions(-)
+
+Index: u-boot-2009.01/lib_arm/board.c
+===================================================================
+--- u-boot-2009.01.orig/lib_arm/board.c
++++ u-boot-2009.01/lib_arm/board.c
+@@ -123,19 +123,19 @@ void *sbrk (ptrdiff_t increment)
+ * May be supplied by boards if desired
+ */
+ void inline __coloured_LED_init (void) {}
+-void inline coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
++void coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
+ void inline __red_LED_on (void) {}
+-void inline red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
++void red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
+ void inline __red_LED_off(void) {}
+-void inline red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
++void red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
+ void inline __green_LED_on(void) {}
+-void inline green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
++void green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
+ void inline __green_LED_off(void) {}
+-void inline green_LED_off(void)__attribute__((weak, alias("__green_LED_off")));
++void green_LED_off(void)__attribute__((weak, alias("__green_LED_off")));
+ void inline __yellow_LED_on(void) {}
+-void inline yellow_LED_on(void)__attribute__((weak, alias("__yellow_LED_on")));
++void yellow_LED_on(void)__attribute__((weak, alias("__yellow_LED_on")));
+ void inline __yellow_LED_off(void) {}
+-void inline yellow_LED_off(void)__attribute__((weak, alias("__yellow_LED_off")));
++void yellow_LED_off(void)__attribute__((weak, alias("__yellow_LED_off")));
+
+ /************************************************************************
+ * Init Utilities *
+Index: u-boot-2009.01/common/main.c
+===================================================================
+--- u-boot-2009.01.orig/common/main.c
++++ u-boot-2009.01/common/main.c
+@@ -48,7 +48,7 @@ DECLARE_GLOBAL_DATA_PTR;
+ * Board-specific Platform code can reimplement show_boot_progress () if needed
+ */
+ void inline __show_boot_progress (int val) {}
+-void inline show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
++void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
+
+ #if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY)
+ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); /* for do_reset() prototype */