r3821 - trunk/src/target/u-boot/patches

werner at sita.openmoko.org werner at sita.openmoko.org
Sun Jan 13 19:17:55 CET 2008


Author: werner
Date: 2008-01-13 19:17:47 +0100 (Sun, 13 Jan 2008)
New Revision: 3821

Modified:
   trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch
   trunk/src/target/u-boot/patches/uboot-gta02.patch
   trunk/src/target/u-boot/patches/uboot-hxd8.patch
   trunk/src/target/u-boot/patches/uboot-smdk2440.patch
   trunk/src/target/u-boot/patches/uboot-smdk2443.patch
Log:
Apply global addition of (NOLOAD) to BSS section in linker scripts.
(In recent upstream. Catch-up still in progress.)

uboot-20061030-neo1973.patch:
- board/neo1973/gta01/u-boot.lds: set .bss type to NOLOAD

uboot-hxd8.patch:
- board/hxd8/u-boot.lds: set .bss type to NOLOAD

uboot-smdk2440.patch:
- board/smdk2440/u-boot.lds: set .bss type to NOLOAD
- include/configs/smdk2440nand.h: removed trailing whitespace

uboot-smdk2443.patch:
- board/smdk2443/u-boot.lds: set .bss type to NOLOAD

uboot-gta02.patch:
- board/neo1973/gta02/u-boot.lds: set .bss type to NOLOAD



Modified: trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch	2008-01-12 21:41:19 UTC (rev 3820)
+++ trunk/src/target/u-boot/patches/uboot-20061030-neo1973.patch	2008-01-13 18:17:47 UTC (rev 3821)
@@ -8,7 +8,7 @@
 ===================================================================
 --- u-boot.orig/Makefile
 +++ u-boot/Makefile
-@@ -2270,6 +2270,14 @@
+@@ -2323,6 +2323,14 @@
  sbc2410x_config: unconfig
  	@$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
  
@@ -27,7 +27,7 @@
 ===================================================================
 --- u-boot.orig/common/main.c
 +++ u-boot/common/main.c
-@@ -67,6 +67,7 @@
+@@ -66,6 +66,7 @@
  #undef DEBUG_PARSER
  
  char        console_buffer[CFG_CBSIZE];		/* console I/O buffer	*/
@@ -35,7 +35,7 @@
  
  #ifndef CONFIG_CMDLINE_EDITING
  static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
-@@ -382,7 +383,7 @@
+@@ -381,7 +382,7 @@
  
  	debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
  
@@ -1901,7 +1901,7 @@
 +
 +	. = ALIGN(4);
 +	__bss_start = .;
-+	.bss : { *(.bss) }
++	.bss (NOLOAD) : { *(.bss) }
 +	_end = .;
 +}
 Index: u-boot/include/configs/neo1973_gta01.h

Modified: trunk/src/target/u-boot/patches/uboot-gta02.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-gta02.patch	2008-01-12 21:41:19 UTC (rev 3820)
+++ trunk/src/target/u-boot/patches/uboot-gta02.patch	2008-01-13 18:17:47 UTC (rev 3821)
@@ -4,7 +4,7 @@
 ===================================================================
 --- u-boot.orig/Makefile
 +++ u-boot/Makefile
-@@ -2276,6 +2276,13 @@
+@@ -2329,6 +2329,13 @@
  sbc2410x_config: unconfig
  	@$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
  
@@ -610,7 +610,7 @@
 +
 +	. = ALIGN(4);
 +	__bss_start = .;
-+	.bss : { *(.bss) }
++	.bss (NOLOAD) : { *(.bss) }
 +	_end = .;
 +}
 Index: u-boot/include/configs/neo1973_gta02.h
@@ -1873,7 +1873,7 @@
 ===================================================================
 --- u-boot.orig/drivers/video/Makefile
 +++ u-boot/drivers/video/Makefile
-@@ -32,6 +32,7 @@
+@@ -33,6 +33,7 @@
  COBJS-y += sed13806.o
  COBJS-y += sed156x.o
  COBJS-y += sm501.o

Modified: trunk/src/target/u-boot/patches/uboot-hxd8.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-hxd8.patch	2008-01-12 21:41:19 UTC (rev 3820)
+++ trunk/src/target/u-boot/patches/uboot-hxd8.patch	2008-01-13 18:17:47 UTC (rev 3821)
@@ -4,7 +4,7 @@
 ===================================================================
 --- u-boot.orig/Makefile
 +++ u-boot/Makefile
-@@ -2189,6 +2189,9 @@
+@@ -2340,6 +2340,9 @@
  qt2410_config	:	unconfig
  	@./mkconfig $(@:_config=) arm arm920t qt2410 NULL s3c24x0
  
@@ -936,7 +936,7 @@
 +
 +	. = ALIGN(4);
 +	__bss_start = .;
-+	.bss : { *(.bss) }
++	.bss (NOLOAD) : { *(.bss) }
 +	_end = .;
 +}
 Index: u-boot/board/hxd8/lowlevel_foo.S
@@ -1156,7 +1156,7 @@
  
  static void s3c2410_hwcontrol(struct mtd_info *mtd, int cmd)
  {
-@@ -251,6 +304,11 @@
+@@ -210,6 +263,11 @@
  	nand->eccmode = NAND_ECC_SOFT;
  #endif
  

Modified: trunk/src/target/u-boot/patches/uboot-smdk2440.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-smdk2440.patch	2008-01-12 21:41:19 UTC (rev 3820)
+++ trunk/src/target/u-boot/patches/uboot-smdk2440.patch	2008-01-13 18:17:47 UTC (rev 3821)
@@ -4,7 +4,7 @@
 ===================================================================
 --- u-boot.orig/Makefile
 +++ u-boot/Makefile
-@@ -2198,6 +2198,9 @@
+@@ -2349,6 +2349,9 @@
  smdk2410_config	:	unconfig
  	@$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
  
@@ -317,7 +317,7 @@
 +++ u-boot/include/configs/smdk2440nand.h
 @@ -0,0 +1,47 @@
 +/*
-+ * (C) Copyright 2004 
++ * (C) Copyright 2004
 + *  Samsung Electronics  : SW.LEE <hitchcar at samsung.com>
 + *
 + * This program is free software; you can redistribute it and/or
@@ -1296,7 +1296,7 @@
 +
 +	. = ALIGN(4);
 +	__bss_start = .;
-+	.bss : { *(.bss) }
++	.bss (NOLOAD) : { *(.bss) }
 +	_end = .;
 +}
 Index: u-boot/board/smdk2440/udc.c

Modified: trunk/src/target/u-boot/patches/uboot-smdk2443.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-smdk2443.patch	2008-01-12 21:41:19 UTC (rev 3820)
+++ trunk/src/target/u-boot/patches/uboot-smdk2443.patch	2008-01-13 18:17:47 UTC (rev 3821)
@@ -2,7 +2,7 @@
 ===================================================================
 --- u-boot.orig/Makefile
 +++ u-boot/Makefile
-@@ -2208,6 +2208,9 @@
+@@ -2362,6 +2362,9 @@
  smdk2440_config :	unconfig
  	@$(MKCONFIG) $(@:_config=) arm arm920t smdk2440 NULL s3c24x0
  
@@ -296,7 +296,7 @@
 +
 +	. = ALIGN(4);
 +	__bss_start = .;
-+	.bss : { *(.bss) }
++	.bss (NOLOAD) : { *(.bss) }
 +	_end = .;
 +}
 Index: u-boot/include/configs/smdk2443.h
@@ -1414,7 +1414,7 @@
 ===================================================================
 --- u-boot.orig/drivers/usb/usb_ohci.c
 +++ u-boot/drivers/usb/usb_ohci.c
-@@ -63,6 +63,7 @@
+@@ -67,6 +67,7 @@
      defined(CONFIG_S3C2400) || \
      defined(CONFIG_S3C2410) || \
      defined(CONFIG_S3C2440) || \





More information about the commitlog mailing list