Send CU-Wireless-Commits mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.chambana.net/mailman/listinfo/cu-wireless-commits
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 CU-Wireless-Commits digest..."
Today's Topics:
1. r5115 - cuw/trunk/src/boot-image ([email protected])
2. r5116 - cuw/trunk/src/boot-image ([email protected])
----------------------------------------------------------------------
Message: 1
Date: Sun, 12 Jun 2011 13:33:59 -0500 (CDT)
From: [email protected]
To: [email protected]
Subject: [CUWiN-Commits] r5115 - cuw/trunk/src/boot-image
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
Author: dyoung
Date: 2011-06-12 13:33:59 -0500 (Sun, 12 Jun 2011)
New Revision: 5115
Modified:
cuw/trunk/src/boot-image/mkstaboot
Log:
Export CUWIMGDIR for callees of mkstaboot to use.
Modified: cuw/trunk/src/boot-image/mkstaboot
===================================================================
--- cuw/trunk/src/boot-image/mkstaboot 2011-06-08 16:40:34 UTC (rev 5114)
+++ cuw/trunk/src/boot-image/mkstaboot 2011-06-12 18:33:59 UTC (rev 5115)
@@ -462,8 +462,8 @@
export STRIPFLAG=${STRIPFLAG:--s}
-export BUILDDIR CUWIN_SETS CUWSRC EXTSRC FLASHDEV ISO MACHDIR MACHINE SRC \
- TAR TOOLDIR
+export BUILDDIR CUWIMGDIR CUWIN_SETS CUWSRC EXTSRC FLASHDEV ISO MACHDIR \
+ MACHINE SRC TAR TOOLDIR
if [ ${first_step:-none} = tools ]; then
run_step tools
------------------------------
Message: 2
Date: Sun, 12 Jun 2011 13:34:59 -0500 (CDT)
From: [email protected]
To: [email protected]
Subject: [CUWiN-Commits] r5116 - cuw/trunk/src/boot-image
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
Author: dyoung
Date: 2011-06-12 13:34:59 -0500 (Sun, 12 Jun 2011)
New Revision: 5116
Modified:
cuw/trunk/src/boot-image/build-helpers.subr
Log:
Bug fix: don't leave the directory off of the image filename.
Modified: cuw/trunk/src/boot-image/build-helpers.subr
===================================================================
--- cuw/trunk/src/boot-image/build-helpers.subr 2011-06-12 18:33:59 UTC (rev
5115)
+++ cuw/trunk/src/boot-image/build-helpers.subr 2011-06-12 18:34:59 UTC (rev
5116)
@@ -6,7 +6,7 @@
sfx=$2
unique=$(mktemp $(dirname $pfx)/unique.XXXXXX)
while true; do
- filename=$(/bin/date +$(basename $pfx)'-%d-%b-%Y'${idx:-}$sfx)
+ filename=$(dirname $pfx)/$(/bin/date +$(basename
$pfx)'-%d-%b-%Y'${idx:-}$sfx)
if [ ${SERIALNO:-no} = no ]; then
break
fi
------------------------------
_______________________________________________
CU-Wireless-Commits mailing list
[email protected]
http://lists.chambana.net/mailman/listinfo/cu-wireless-commits
End of CU-Wireless-Commits Digest, Vol 55, Issue 2
**************************************************