Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2009-08-11 12:23:35 (GMT)
committer Martin Dengler <martin@martindengler.com>2009-08-11 12:23:35 (GMT)
commit293d8e0300ee737c5007cbda472a17fef292913f (patch)
tree99356aaa9560de561fe54debd60164a15ea93d11
parente371bf52fb0d7be63b7289f2c0b3839c4de7d701 (diff)
report size and change more clearly and in MB, not GB
-rwxr-xr-xannounce21
-rwxr-xr-xbuild2
2 files changed, 20 insertions, 3 deletions
diff --git a/announce b/announce
index 3b1b798..a0123e5 100755
--- a/announce
+++ b/announce
@@ -17,8 +17,8 @@ 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
+NAND size / change in size: $nandsizechange
+ext3 size / change in size: $treesizechange
Package changes:
@@ -41,5 +41,22 @@ $buildname.removable.img.tar.lzma - for:
cat $buildname.removable.tar.lzma | lzma -dc - | tar xf - -O - > /dev/sdX
+Caveats/Known Issues:
+
+[please reply or comment on the Fedora/Redhat bug report if you see
+ any of these]
+
+ - Camera doesn't work
+ https://bugzilla.redhat.com/show_bug.cgi?id=498900
+
+ - SD boots sometimes fail (mount: unknown filesystem type: 'jffs2')
+ https://bugzilla.redhat.com/show_bug.cgi?id=500196
+
+
+
+Before reporting bugs, it'd be nice if one could search the fedora
+bugzilla; start with this bug:
+https://bugzilla.redhat.com/show_bug.cgi?id=461806
+
EOF
diff --git a/build b/build
index a180940..6ae84de 100755
--- a/build
+++ b/build
@@ -14,7 +14,7 @@ echo building $buildname ; echo building $buildname >> ${buildname}.buildlog
for ext in tree removable.img img ; do
prevsize=$(< $prevbuild.$ext.size.txt)
nextsize=$(< $buildname.$ext.size.txt)
- python -c "oldk = $prevsize ; newk = $nextsize ; print '%0.2fG (%dK)' % (newk / 1024 / 1024.0, newk - oldk)" > $buildname.$ext.size-change.txt
+ python -c "oldk = $prevsize ; newk = $nextsize ; print '%0.2fM / %dK /' % (newk / 1024.0, newk - oldk)" > $buildname.$ext.size-change.txt
done
diff -U 1 $prevbuild.tree.packages.txt $buildname.tree.packages.txt | grep -v ^@@ > $buildname.tree.package-changes.txt