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

werner at sita.openmoko.org werner at sita.openmoko.org
Mon Feb 11 04:10:47 CET 2008


Author: werner
Date: 2008-02-11 04:10:43 +0100 (Mon, 11 Feb 2008)
New Revision: 4047

Modified:
   trunk/src/target/u-boot/patches/uboot-gta02.patch
Log:
Recent GTA02 have 256MB of NAND. Use them ! :-)

uboot-gta02.patch:
- board/neo1973/gta02/gta02.c (dynpart_size): sized don't need to add up to
  exactly the nominal size
- board/neo1973/gta02/gta02.c (dynpart_size): changes size of rootfs from 128MB
  to 256MB



Modified: trunk/src/target/u-boot/patches/uboot-gta02.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-gta02.patch	2008-02-11 03:06:39 UTC (rev 4046)
+++ trunk/src/target/u-boot/patches/uboot-gta02.patch	2008-02-11 03:10:43 UTC (rev 4047)
@@ -507,11 +507,11 @@
 +	return 1;
 +}
 +
-+/* The sum of all part_size[]s must equal to the NAND size, i.e., 0x8000000. */
++/* The sum of all part_size[]s must equal to or greater than the NAND size,
++   i.e., 0x10000000. */
 +
 +unsigned int dynpart_size[] = {
-+    CFG_UBOOT_SIZE, CFG_ENV_SIZE, 0x800000, 0xa0000, 0x40000,
-+    0x8000000-CFG_UBOOT_SIZE-CFG_ENV_SIZE-0x800000-0xa0000-0x40000, 0 };
++    CFG_UBOOT_SIZE, CFG_ENV_SIZE, 0x800000, 0xa0000, 0x40000, 0x10000000, 0 };
 +char *dynpart_names[] = {
 +    "u-boot", "u-boot_env", "kernel", "splash", "factory", "rootfs", NULL };
 +





More information about the commitlog mailing list