r490 - in trunk/oe/packages/uboot: . files

laforge at gta01.hmw-consulting.de laforge at gta01.hmw-consulting.de
Wed Jan 3 23:42:42 CET 2007


Author: laforge
Date: 2007-01-03 23:42:41 +0100 (Wed, 03 Jan 2007)
New Revision: 490

Added:
   trunk/oe/packages/uboot/files/u-boot-20061030-ext2load_hex.patch
Modified:
   trunk/oe/packages/uboot/uboot-gta01_0.0+cvs20061030.bb
Log:
- add gta01bv2 patch to .bb file
- make sure ext2load prints file size in hex
- bump release version to -r3


Added: trunk/oe/packages/uboot/files/u-boot-20061030-ext2load_hex.patch
===================================================================
--- trunk/oe/packages/uboot/files/u-boot-20061030-ext2load_hex.patch	2007-01-03 22:40:46 UTC (rev 489)
+++ trunk/oe/packages/uboot/files/u-boot-20061030-ext2load_hex.patch	2007-01-03 22:42:41 UTC (rev 490)
@@ -0,0 +1,14 @@
+This patch adds the hex-printing of the file size read by 'ext2load'
+Index: u-boot.git/common/cmd_ext2.c
+===================================================================
+--- u-boot.git.orig/common/cmd_ext2.c	2007-01-02 18:26:17.000000000 +0100
++++ u-boot.git/common/cmd_ext2.c	2007-01-02 18:26:27.000000000 +0100
+@@ -279,7 +279,7 @@
+ 	/* Loading ok, update default load address */
+ 	load_addr = addr;
+ 
+-	printf ("\n%ld bytes read\n", filelen);
++	printf ("\n%ld (0x%lx) bytes read\n", filelen, filelen);
+ 	sprintf(buf, "%lX", filelen);
+ 	setenv("filesize", buf);
+ 

Modified: trunk/oe/packages/uboot/uboot-gta01_0.0+cvs20061030.bb
===================================================================
--- trunk/oe/packages/uboot/uboot-gta01_0.0+cvs20061030.bb	2007-01-03 22:40:46 UTC (rev 489)
+++ trunk/oe/packages/uboot/uboot-gta01_0.0+cvs20061030.bb	2007-01-03 22:42:41 UTC (rev 490)
@@ -3,14 +3,16 @@
 PRIORITY = "optional"
 LICENSE = "GPL"
 SRCDATE := "${PV}"
-PR = "r2"
+PR = "r3"
 
 PROVIDES = "virtual/bootloader"
 S = "${WORKDIR}/git"
 
 SRC_URI = "git://www.denx.de/git/u-boot.git/;protocol=git \
 	   file://u-boot-20061030-qt2410-gta01.patch;patch=1 \
-	   file://u-boot-20061030-gta01v4.patch;patch=1"
+	   file://u-boot-20061030-gta01v4.patch;patch=1 \
+	   file://u-boot-20061030-gta01bv2.patch;patch=1 \
+	   file://u-boot-20061030-ext2load_hex.patch;patch=1"
 # file://gta01_*.h"
 
 EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"





More information about the commitlog mailing list