Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/announce
blob: 3b1b798f8338f7962e821c848dc20f0db18c6c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
set -e

recipients=martin@martindengler.com

builddir=$1
buildnamefile=$2
buildname=$(<$buildnamefile)

nandsize=$(<$builddir/$buildname.img.size.txt)
nandsizechange=$(<$builddir/$buildname.img.size-change.txt)

treesize=$(<$builddir/$buildname.tree.size.txt)
treesizechange=$(<$builddir/$buildname.tree.size-change.txt)

mail -s "New SoaS-on-XO-1 build done: $buildname" $recipients <<EOF

A new SoaS-on-XO-1 build $buildname is available.

NAND size (change): $nandsizechange
ext3 size (change): $treesizechange

Package changes:

$(<$builddir/$buildname.tree.package-changes.txt)

Download from:

http://people.sugarlabs.org/~mtd/soas-xo1

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.removable.img.tar.lzma - for:
 cat $buildname.removable.tar.lzma | lzma -dc - | tar xf - -O - > /dev/sdX


EOF