Send commitlog mailing list submissions to
commitlog@lists.openmoko.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r4031 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
2. r4032 - trunk/src/host/devirginator ([EMAIL PROTECTED])
3. r4033 - developers/werner ([EMAIL PROTECTED])
4. r4034 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
5. r4035 - trunk/src/target/u-boot/patches ([EMAIL PROTECTED])
6. r4036 - trunk/src/target/u-boot/scripts ([EMAIL PROTECTED])
--- Begin Message ---
Author: werner
Date: 2008-02-09 16:36:23 +0100 (Sat, 09 Feb 2008)
New Revision: 4031
Modified:
trunk/src/target/u-boot/patches/nand-dynamic_partitions.patch
trunk/src/target/u-boot/patches/uboot-dfu.patch
Log:
If we started without "mtdparts" set, DFU did not recognize partition names
even after a subsequent "dynpart". This patch makes "dynpart" update DFU's
partition name table.
uboot-dfu.patch:
- drivers/usb/usbdfu.c (dfu_update_strings): new function to update the USB
string table after "dynpart"
nand-dynamic_partitions.patch:
- common/cmd_jffs2.c (nand_create_mtd_dynpart): if we have DFU, invoke
"dfu_update_strings" after "dynpart"
Modified: trunk/src/target/u-boot/patches/nand-dynamic_partitions.patch
===================================================================
--- trunk/src/target/u-boot/patches/nand-dynamic_partitions.patch
2008-02-08 18:02:15 UTC (rev 4030)
+++ trunk/src/target/u-boot/patches/nand-dynamic_partitions.patch
2008-02-09 15:36:23 UTC (rev 4031)
@@ -15,7 +15,7 @@
Signed-off-by: Harald Welte <[EMAIL PROTECTED]>
-Index: u-boot/drivers/nand/nand_bbt.c
+Index: u-boot/drivers/mtd/nand/nand_bbt.c
===================================================================
--- u-boot.orig/drivers/mtd/nand/nand_bbt.c
+++ u-boot/drivers/mtd/nand/nand_bbt.c
@@ -110,7 +110,7 @@
===================================================================
--- u-boot.orig/include/configs/neo1973_gta01.h
+++ u-boot/include/configs/neo1973_gta01.h
-@@ -91,6 +91,7 @@
+@@ -92,6 +92,7 @@
#define CONFIG_CMD_BSP
#define CONFIG_CMD_ELF
#define CONFIG_CMD_MISC
@@ -118,7 +118,7 @@
#define CONFIG_CMD_DIAG
#define CONFIG_CMD_SAVES
#define CONFIG_CMD_NAND
-@@ -199,13 +200,13 @@
+@@ -201,13 +202,13 @@
#define CONFIG_FAT 1
#define CONFIG_SUPPORT_VFAT
@@ -135,7 +135,7 @@
#endif
/* ATAG configuration */
-@@ -245,4 +246,9 @@
+@@ -249,4 +250,9 @@
#define CONFIG_DRIVER_PCF50606 1
#define CONFIG_RTC_PCF50606 1
@@ -149,7 +149,7 @@
===================================================================
--- u-boot.orig/common/cmd_jffs2.c
+++ u-boot/common/cmd_jffs2.c
-@@ -1841,6 +1841,29 @@
+@@ -1838,6 +1838,29 @@
return NULL;
}
@@ -179,7 +179,7 @@
/***************************************************/
/* U-boot commands */
/***************************************************/
-@@ -2132,6 +2155,24 @@
+@@ -2129,6 +2152,30 @@
printf ("Usage:\n%s\n", cmdtp->usage);
return 1;
}
@@ -189,6 +189,8 @@
+
+int do_dynpart(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+{
++ extern void dfu_update_strings(void);
++
+#if 0
+ int i = simple_strtoul(argv[1], NULL, 0);
+ if (i >= CFG_MAX_NAND_DEVICE)
@@ -196,6 +198,10 @@
+#endif
+ nand_create_mtd_dynpart(&nand_info[0]);
+
++#ifdef CONFIG_USBD_DFU
++ dfu_update_strings();
++#endif
++
+ return 0;
+}
+#endif /* CONFIG_NAND_DYNPART */
@@ -204,7 +210,7 @@
#endif /* #ifdef CONFIG_JFFS2_CMDLINE */
/***************************************************/
-@@ -2197,6 +2238,15 @@
+@@ -2194,6 +2241,15 @@
"<name> := '(' NAME ')'\n"
"<ro-flag> := when set to 'ro' makes partition read-only (not used,
passed to kernel)\n"
);
@@ -254,7 +260,7 @@
}
idx = dev->id->num;
*nand = nand_info[idx];
-@@ -253,7 +260,7 @@
+@@ -257,7 +264,7 @@
printf("\nNAND %s: ", scrub ? "scrub" : "erase");
/* skip first two or three arguments, look for offset and size
*/
@@ -263,7 +269,7 @@
return 1;
memset(&opts, 0, sizeof(opts));
-@@ -315,7 +322,7 @@
+@@ -319,7 +326,7 @@
read = strncmp(cmd, "read", 4) == 0; /* 1 = read, 0 = write */
printf("\nNAND %s: ", read ? "read" : "write");
@@ -272,7 +278,7 @@
return 1;
s = strchr(cmd, '.');
-@@ -437,7 +444,7 @@
+@@ -441,7 +448,7 @@
}
if (strcmp(cmd, "unlock") == 0) {
@@ -324,10 +330,10 @@
===================================================================
--- u-boot.orig/board/neo1973/gta01/gta01.c
+++ u-boot/board/neo1973/gta01/gta01.c
-@@ -425,3 +425,14 @@
- return 0;
+@@ -494,3 +494,14 @@
}
+
+
+/* The sum of all part_size[]s must equal to the NAND size, i.e., 0x4000000.
+ "initrd" is sized such that it can hold two uncompressed 16 bit 640*480
Modified: trunk/src/target/u-boot/patches/uboot-dfu.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-dfu.patch 2008-02-08 18:02:15 UTC
(rev 4030)
+++ trunk/src/target/u-boot/patches/uboot-dfu.patch 2008-02-09 15:36:23 UTC
(rev 4031)
@@ -90,7 +90,7 @@
===================================================================
--- /dev/null
+++ u-boot/drivers/usb/usbdfu.c
-@@ -0,0 +1,1018 @@
+@@ -0,0 +1,1050 @@
+/*
+ * (C) 2007 by OpenMoko, Inc.
+ * Author: Harald Welte <[EMAIL PROTECTED]>
@@ -1007,6 +1007,38 @@
+ }
+}
+
++
++#ifdef CONFIG_NAND_DYNPART
++
++void dfu_update_strings(void)
++{
++ int i;
++
++ if (!system_dfu_state) {
++ printf("NASTY SURPRISE: system_dfu_state not set\n");
++ return;
++ }
++
++ for (i = 1; i != DFU_NUM_ALTERNATES; i++) {
++ struct part_info *part = get_partition_nand(i-1);
++ struct usb_string_descriptor *strdesc, **slot;
++
++ if (part)
++ strdesc = create_usbstring(part->name);
++ else
++ strdesc = create_usbstring("undefined partition");
++ if (!strdesc)
++ continue;
++ slot = usb_strings+STR_COUNT+i+1;
++ if (*slot)
++ free(*slot);
++ *slot = strdesc;
++ }
++}
++
++#endif /* CONFIG_NAND_DYNPART */
++
++
+int dfu_init_instance(struct usb_device_instance *dev)
+{
+ int i;
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-02-10 07:34:32 +0100 (Sun, 10 Feb 2008)
New Revision: 4032
Added:
trunk/src/host/devirginator/blink.pl
trunk/src/host/devirginator/mknor
Log:
devirginator/blink.pl: linker for binary data of unknown structure
devirginator/mknor: example script that composes a GTA02 NOR image
Added: trunk/src/host/devirginator/blink.pl
===================================================================
--- trunk/src/host/devirginator/blink.pl 2008-02-09 15:36:23 UTC (rev
4031)
+++ trunk/src/host/devirginator/blink.pl 2008-02-10 06:34:32 UTC (rev
4032)
@@ -0,0 +1,97 @@
+#!/usr/bin/perl
+#
+# blink.pl - Binary Linker
+#
+# Copyright (C) 2008 by OpenMoko, Inc.
+# Written by Werner Almesberger <[EMAIL PROTECTED]>
+# All Rights Reserved
+#
+
+#
+# usage: blink.pl item ...
+#
+# Build an image containing the items specified on the command line and print
+# the resulting data to stdout. Any gaps in the data are filled with zero
+# bytes.
+#
+# "item" is
+#
+# [EMAIL PROTECTED]
+#
+# - if no address is specified, the new object the places after the previous
+# one
+# - the address can be decimal, hex, or octal, following the usual C
+# conventions
+# - if the address is lower than the current position, it must be prefixed with
+# an equal sign
+#
+# "object" is one of
+#
+# filename
+# "string"
+# value[/bytes]
+#
+# - the default value size is four bytes
+# - note that the double quotes of a string must be protected from the shell
+#
+# E.g.,
+# blink.pl foo.bin /tmp/[EMAIL PROTECTED] 0x1000/[EMAIL PROTECTED]
'"hello"'@0x2000
+#
+
+
+$addr = 0;
+
+
+sub put
+{
+ $data .= "\000" x ($addr-length $data) if $addr > length $data;
+ substr($data, $addr, length $_[0], $_[0]);
+ $addr += length $_[0];
+}
+
+
+for (@ARGV) {
+ if (/@(=?)(0[Xx][0-9a-fA-F]+|[0-9]+)$/) {
+ $obj = $`;
+ $new = eval $2;
+ die "new address $2 before current address"
+ if $new < $addr && $1 ne "=";
+ $addr = $new;
+ }
+ else {
+ $obj = $_;
+ }
+ if ($obj =~ m#^(0[xX][0-9a-fA-F]+|0-9+)(/[124])?$#) {
+ $val = pack(!defined $2 || $2 == 4 ? "V" : $2 == 2 ? "v" : "c",
+ eval $1);
+ &put($val);
+ }
+ elsif ($obj =~ /^"(.*)"$/) {
+ ($in, $out) = ($1, "");
+ while ($in =~ /\\([0-7]{1,3}|[^0-7])/) {
+ $out .= $`;
+ if (index("01234567", substr($1, 0, 1)) == -1) {
+ $n = index("bnrt", $1);
+ if ($n == -1) {
+ $out .= $1;
+ }
+ else {
+ $out .= substr("\b\n\r\t", $n, 1);
+ }
+ }
+ else {
+ $out .= pack("c", oct $1);
+ }
+ $in = $';
+ }
+ &put($out.$in."\000");
+ }
+ else {
+ open(FILE, $obj) || die "$obj: $!";
+ defined read(FILE, $data, -s FILE, $addr) || die "$obj: $!";
+ close FILE;
+ $addr += -s FILE;
+ }
+}
+
+die "print: $!" unless print $data;
Property changes on: trunk/src/host/devirginator/blink.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/src/host/devirginator/mknor
===================================================================
--- trunk/src/host/devirginator/mknor 2008-02-09 15:36:23 UTC (rev 4031)
+++ trunk/src/host/devirginator/mknor 2008-02-10 06:34:32 UTC (rev 4032)
@@ -0,0 +1,121 @@
+#!/bin/sh
+#
+# mknor - Make a GTA02 NOR binary (containing u-boot and a new environment)
+#
+# Copyright (C) 2008 by OpenMoko, Inc.
+# Written by Werner Almesberger <[EMAIL PROTECTED]>
+# All Rights Reserved
+#
+
+#
+# WARNING * WARNING * WARNING * WARNING * WARNING * WARNING * WARNING * WARNING
+#
+# This isn't the final version of NOR image creation yet, and some things may
+# not work as expected.
+#
+# WARNING * WARNING * WARNING * WARNING * WARNING * WARNING * WARNING * WARNING
+#
+
+#
+# Write to NOR with the following commands:
+#
+# flash_unlock /dev/mtd0
+# flash_eraseall /dev/mtd0
+# cat nor.bin >/dev/mtd0
+#
+
+#
+# NOR map:
+#
+# Physical address in MCU address space
+# | Offset in NOR
+# | | Description
+# | | |
+# 0x18 00 0000 beginning of NOR, u-boot (256kB)
+# 0x18 04 0000 splash image
+# 0x18 05 0000 preboot command
+# 0x18 05 0100 preboot script
+# 0x18 05 1000 environment
+# 0x18 1F FFFF end of NOR (2MB)
+#
+
+#unzip 0x18070000 0x8800000 0x96000
+
+./scriptify.pl <<EOF >_script
+neo backlight off
+neo backlight on
+unzip 0x18040000 0x885dc00 0x38400
+dynpart
+echo READY.
+EOF
+
+pngtopnm tmp/System_boot.png |
+ pamcut 0 145 480 240 |
+ ../splash/splashimg.pl -pnm - |
+ gzip -9 >_splash
+
+./envedit.pl -f - -o _env <<EOF
+mtdids=nor0=physmap-flash,nand0=neo1973-nand
+
+stdin=usbtty
+stdout=usbtty
+stderr=usbtty
+
+bootdelay=5
+
+usbtty=cdc_acm
+
+boot_menu_timeout=72000
+
+bootargs_base=
+ rootfstype=jffs2
+ root=/dev/mtdblock5
+ console=ttySAC2,115200
+ console=tty0
+ loglevel=8
+ regular_boot
+
+bootcmd=
+ setenv bootargs \${bootargs_base} \${mtdparts};
+ nand read.e 0x32000000 kernel 0x200000;
+ bootm 0x32000000
+
+menu_1=
+ Copy u-boot from NOR to NAND:
+ cp.l 0x18000000 0x32000000 0x10000;
+ mw.l 0x32000040 0 2;
+ nand write.e 0x32000000 0 0x40000;
+ dynenv set u-boot_env
+
+menu_2=
+ Set console to USB:
+ setenv stdin usbtty;
+ setenv stdout usbtty;
+ setenv stderr usbtty
+
+menu_3=
+ Set console to serial:
+ setenv stdin serial;
+ setenv stdout serial;
+ setenv stderr serial
+
+menu_4=
+ Reset:
+ reset
+
+menu_5=
+ Power off:
+ neo1973 power-off
+EOF
+
+./blink.pl \
+ /home/moko/fr/u-boot/[EMAIL PROTECTED] \
+ [EMAIL PROTECTED] \
+ '"autoscr 0x18050100"'@0x50000 \
+ [EMAIL PROTECTED] \
+ [EMAIL PROTECTED] \
+ [EMAIL PROTECTED] \
+ [EMAIL PROTECTED] \
+ >nor.bin || { rm -rf nor.bin; exit 1; }
+
+rm -f _splash _script _env
Property changes on: trunk/src/host/devirginator/mknor
___________________________________________________________________
Name: svn:executable
+ *
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-02-10 07:54:23 +0100 (Sun, 10 Feb 2008)
New Revision: 4033
Added:
developers/werner/scr2ppm.pl
Log:
scr2ppm.pl: converts from a screen dump to a PPM file
Added: developers/werner/scr2ppm.pl
===================================================================
--- developers/werner/scr2ppm.pl 2008-02-10 06:34:32 UTC (rev 4032)
+++ developers/werner/scr2ppm.pl 2008-02-10 06:54:23 UTC (rev 4033)
@@ -0,0 +1,20 @@
+#!/usr/bin/perl
+
+#
+# On GTA02, a screen dump can be obtained trough JTAG with
+# dump_image filename 0x8800000 0x96000
+#
+
+#
+# Usage:
+# scr2ppm.pl screendump >file.ppm
+#
+
+$d = join("", <>);
+
+print "P6\n480 640 255\n";
+
+for ($i = 0; $i < length $d; $i += 2) {
+ $v = unpack("v", substr($d, $i, 2));
+ print pack("ccc", ($v >> 11) << 3, ($v >> 5) << 2, $v << 3);
+}
Property changes on: developers/werner/scr2ppm.pl
___________________________________________________________________
Name: svn:executable
+ *
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-02-10 08:51:32 +0100 (Sun, 10 Feb 2008)
New Revision: 4034
Added:
trunk/src/target/u-boot/patches/uboot-s3c2410-nand.patch
Modified:
trunk/src/target/u-boot/patches/series
Log:
Reverted the removal of the __board_nand_init change in
uboot-s3c2410-nand.patch
series:
- re-added uboot-s3c2410-nand.patch
uboot-s3c2410-nand.patch:
- include/s3c24x0.h, cpu/arm920t/s3c24x0/nand.c: make board_nand_init a weak
alias of __board_nand_init so that platform code can replace it
Modified: trunk/src/target/u-boot/patches/series
===================================================================
--- trunk/src/target/u-boot/patches/series 2008-02-10 06:54:23 UTC (rev
4033)
+++ trunk/src/target/u-boot/patches/series 2008-02-10 07:51:32 UTC (rev
4034)
@@ -23,6 +23,7 @@
# this will be somewhat more difficult
nand-dynamic_partitions.patch
+uboot-s3c2410-nand.patch
uboot-s3c2410-norelocate_irqvec_cpy.patch
uboot-usbtty-acm.patch
uboot-s3c2410_udc.patch
Added: trunk/src/target/u-boot/patches/uboot-s3c2410-nand.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-s3c2410-nand.patch 2008-02-10
06:54:23 UTC (rev 4033)
+++ trunk/src/target/u-boot/patches/uboot-s3c2410-nand.patch 2008-02-10
07:51:32 UTC (rev 4034)
@@ -0,0 +1,26 @@
+Index: u-boot/cpu/arm920t/s3c24x0/nand.c
+===================================================================
+--- u-boot.orig/cpu/arm920t/s3c24x0/nand.c
++++ u-boot/cpu/arm920t/s3c24x0/nand.c
+@@ -122,7 +122,9 @@
+ }
+ #endif
+
+-int board_nand_init(struct nand_chip *nand)
++int board_nand_init(void) __attribute__((weak, alias("__board_nand_init")));
++
++int __board_nand_init(struct nand_chip *nand)
+ {
+ u_int32_t cfg;
+ u_int8_t tacls, twrph0, twrph1;
+Index: u-boot/include/s3c24x0.h
+===================================================================
+--- u-boot.orig/include/s3c24x0.h
++++ u-boot/include/s3c24x0.h
+@@ -1122,4 +1122,6 @@
+
+ #endif
+
++int __board_nand_init(struct nand_chip *nand);
++
+ #endif /*__S3C24X0_H__*/
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-02-10 08:57:55 +0100 (Sun, 10 Feb 2008)
New Revision: 4035
Added:
trunk/src/target/u-boot/patches/env-override.patch
Modified:
trunk/src/target/u-boot/patches/series
trunk/src/target/u-boot/patches/uboot-gta02.patch
Log:
This patch introduces a new variable at a well-known address that can be
overwritten from the outsite to change the startup behaviour of u-boot. This
variable is at offset 0x40 (if preboot-override is not enabled) or 0x44 (if
it is), and it points to an alternate data block to be used as the default
environment.
This makes not-default-env.patch obsolete, because we just use this override
when booting from NOR.
env-override.patch:
- cpu/arm920t/start.S: new configuration variable CFG_ENV_OVERRIDE to enable
environment overriding
- cpu/arm920t/start.S: added global variable "env_override" to specifiy an
alternate initial environment
- common/env_common.c (default_env): if env_override is set, use that
environment as the default
uboot-gta02.patch:
- include/configs/neo1973_gta02.h: set CFG_ENV_OVERRIDE
series:
- added env-override.patch
- backed out nor-default-env.patch, since env-override.patch provides the same
functionality (in our context)
Added: trunk/src/target/u-boot/patches/env-override.patch
===================================================================
--- trunk/src/target/u-boot/patches/env-override.patch 2008-02-10 07:51:32 UTC
(rev 4034)
+++ trunk/src/target/u-boot/patches/env-override.patch 2008-02-10 07:57:55 UTC
(rev 4035)
@@ -0,0 +1,46 @@
+Index: u-boot/common/env_common.c
+===================================================================
+--- u-boot.orig/common/env_common.c
++++ u-boot/common/env_common.c
+@@ -34,6 +34,10 @@
+ extern char *preboot_override;
+ #endif
+
++#ifdef CFG_ENV_OVERRIDE
++extern void *env_override;
++#endif
++
+ DECLARE_GLOBAL_DATA_PTR;
+
+ #ifdef CONFIG_AMIGAONEG3SE
+@@ -207,6 +211,12 @@
+ memcpy (env_ptr->data,
+ default_environment,
+ sizeof(default_environment));
++
++#ifdef CFG_ENV_OVERRIDE
++ if (env_override)
++ memcpy(env_ptr->data, env_override, ENV_SIZE);
++#endif
++
+ #ifdef CFG_REDUNDAND_ENVIRONMENT
+ env_ptr->flags = 0xFF;
+ #endif
+Index: u-boot/cpu/arm920t/start.S
+===================================================================
+--- u-boot.orig/cpu/arm920t/start.S
++++ u-boot/cpu/arm920t/start.S
+@@ -85,6 +85,13 @@
+ .word 0
+ #endif
+
++/* Must follow preboot_override , so we get a well-known address ! */
++#ifdef CFG_ENV_OVERRIDE
++.globl env_override
++env_override:
++ .word 0
++#endif
++
+ #ifdef CONFIG_S3C2410_NAND_BOOT
+ .globl booted_from_nand
+ booted_from_nand:
Modified: trunk/src/target/u-boot/patches/series
===================================================================
--- trunk/src/target/u-boot/patches/series 2008-02-10 07:51:32 UTC (rev
4034)
+++ trunk/src/target/u-boot/patches/series 2008-02-10 07:57:55 UTC (rev
4035)
@@ -47,6 +47,7 @@
# move these later, once the dust has settled
default-env.patch
+env-override.patch
console-ansi.patch
boot-menu.patch
@@ -84,7 +85,7 @@
uboot-neo1973_defaultconsole_usbtty.patch
# keep this here until we have time to bubble it into the stack
-nor-default-env.patch
+##nor-default-env.patch
# let's see what upstream thinks about this
loadenv.patch
Modified: trunk/src/target/u-boot/patches/uboot-gta02.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-gta02.patch 2008-02-10 07:51:32 UTC
(rev 4034)
+++ trunk/src/target/u-boot/patches/uboot-gta02.patch 2008-02-10 07:57:55 UTC
(rev 4035)
@@ -609,7 +609,7 @@
===================================================================
--- /dev/null
+++ u-boot/include/configs/neo1973_gta02.h
-@@ -0,0 +1,286 @@
+@@ -0,0 +1,287 @@
+/*
+ * (C) Copyright 2007 OpenMoko, Inc.
+ * Author: Harald Welte <[EMAIL PROTECTED]>
@@ -822,6 +822,7 @@
+#define CFG_ENV_SIZE 0x40000 /* 128k Total Size of Environment
Sector */
+#define CFG_ENV_OFFSET_OOB 1 /* Location of ENV stored in block 0
OOB */
+#define CFG_PREBOOT_OVERRIDE 1 /* allow preboot from memory */
++#define CFG_ENV_OVERRIDE /* allow pre-loading the environment */
+
+#define NAND_MAX_CHIPS 1
+#define CFG_NAND_BASE 0x4e000000
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2008-02-10 08:58:37 +0100 (Sun, 10 Feb 2008)
New Revision: 4036
Modified:
trunk/src/target/u-boot/scripts/build
Log:
Upgraded to GIT_HEAD 37e3c62fa07a823e7569c872e3a9395d227ed8e3, SVN_REV 4035.
Modified: trunk/src/target/u-boot/scripts/build
===================================================================
--- trunk/src/target/u-boot/scripts/build 2008-02-10 07:57:55 UTC (rev
4035)
+++ trunk/src/target/u-boot/scripts/build 2008-02-10 07:58:37 UTC (rev
4036)
@@ -20,10 +20,10 @@
# DEVICE=gta02v4
#
# GIT_HEAD, if defined, specifies which git head we use, e.g.,
-# GIT_HEAD=98b742489c09780be6a832eeaa4e5eff824792bb
+# GIT_HEAD=37e3c62fa07a823e7569c872e3a9395d227ed8e3
#
# SVN_REV, if defined, specifies which SVN revision we use, e.g.,
-# SVN_REV=3978
+# SVN_REV=4035
#
git clone git://www.denx.de/git/u-boot.git
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog