Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/announce
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2009-08-26 16:48:41 (GMT)
committer Martin Dengler <martin@martindengler.com>2009-08-26 16:48:41 (GMT)
commit3245f932404dd8105aeee37bd15eb4e784c7a97d (patch)
treec3cbfa001685886270d1f619a808a68c419ab6af /announce
parent8cc2e6353fea757acb95e25e6ca8fac75d0964b2 (diff)
teach support scripts/docs about new filenames
Diffstat (limited to 'announce')
-rwxr-xr-xannounce54
1 files changed, 40 insertions, 14 deletions
diff --git a/announce b/announce
index 78e651f..dcc965c 100755
--- a/announce
+++ b/announce
@@ -8,44 +8,70 @@ buildnamefile=$2
buildname=$(<$buildnamefile)
announcefile=$builddir/$buildname.announcement.txt
-nandsize=$(<$builddir/$buildname.img.size.txt)
-nandsizechange=$(<$builddir/$buildname.img.size-change.txt)
+nandsize=$(<$builddir/${buildname}xo.img.size.txt)
+nandsizechange=$(<$builddir/${buildname}xo.img.size-change.txt)
treesize=$(<$builddir/$buildname.tree.size.txt)
treesizechange=$(<$builddir/$buildname.tree.size-change.txt)
cat > $announcefile <<EOF
-A new SoaS build $buildname is available.
+New Sugar-on-a-Stick builds $buildname are available. This is the
+Sugar Learning Environment running on a full Fedora GNU/Linux
+operating system.
-total generic ext3 size / change in size: $treesizechange (change)
-total XO-1 NAND size / change in size: $nandsizechange (change)
-Package changes:
+Size changes:
+------------
+
+total SoaS ext3 size / change in size: $treesizechange (change)
+total SoaS-for-XO-1 NAND size / change in size: $nandsizechange (change)
+
+Package changes:
+---------------
$(<$builddir/$buildname.tree.package-changes.txt)
-Download from http://people.sugarlabs.org/~mtd/soas-xo1
+Download from http://people.sugarlabs.org/~mtd/soas
$(<BUGS.txt)
-Installation instructions: http://people.sugarlabs.org/~mtd/soas-xo1/README.txt
+
+Quickstart:
+----------
+either:
+ copy-nand u:\soas??xo.img
+or: (2g or larger removable)
+ cat soas??xo.4gremovable.tar.lzma | lzma -dc - | tar xf - -O > /dev/sdX
+or: (4g or larger removable)
+ cat soas??xo.2gremovable.tar.lzma | lzma -dc - | tar xf - -O > /dev/sdX
+
+
+Installation instructions:
+-------------------------
+
+ http://people.sugarlabs.org/~mtd/soas/README.txt
+
Files:
+-----
$buildname.iso - iso9990 file system (for use with livecd-iso-to-disk)
$buildname.tree.tar.lzma - for hacking
-$buildname.img - for ...
-$buildname.crc - ... copy-nand'ing
-$buildname.plc - ... NANDblast'ing
+${buildname}xo.img - for ...
+${buildname}xo.crc - ... copy-nand'ing
+${buildname}xo.plc - ... NANDblast'ing
+
+$buildname.4gremovable.img.tar.lzma - for simply writing to 4 gig removable devices:
+ cat $buildname.4gremovable.tar.lzma | lzma -dc - | tar xf - -O > /dev/sdX
-$buildname.removable.img.tar.lzma - for:
- cat $buildname.removable.tar.lzma | lzma -dc - | tar xf - -O > /dev/sdX
+$buildname.2gremovable.img.tar.lzma - for simply writing to 2 gig removable devices:
+ cat $buildname.2gremovable.tar.lzma | lzma -dc - | tar xf - -O > /dev/sdX
Build date: $(date)
EOF
-mail -s "New SoaS-on-XO-1 build done: $buildname" $recipients < $announcefile
+mail -s "New SoaS builds done: $buildname" $recipients < $announcefile