Unreviewed.
authorabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 2 Jul 2012 00:34:09 +0000 (00:34 +0000)
committerabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 2 Jul 2012 00:34:09 +0000 (00:34 +0000)
Using the default start cylinder for fdisk causes a warning about the
partition not starting on physical sector boundary.  The Ubuntu forums
recommend using a number that's divisible by 8, which is what we do in
this patch.

* EWSTools/cold-boot.sh:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121647 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/EWSTools/cold-boot.sh

index cd73c73..72216d4 100644 (file)
@@ -2,6 +2,17 @@
 
         Unreviewed.
 
+        Using the default start cylinder for fdisk causes a warning about the
+        partition not starting on physical sector boundary.  The Ubuntu forums
+        recommend using a number that's divisible by 8, which is what we do in
+        this patch.
+
+        * EWSTools/cold-boot.sh:
+
+2012-07-01  Adam Barth  <abarth@webkit.org>
+
+        Unreviewed.
+
         It turns out we need to use Ubuntu 10.04 to get the right image results
         for chromium-linux. This patch updates our scripts to be compatible
         with Ubuntu 10.04.
index 7a90c40..1fce2bd 100755 (executable)
@@ -37,7 +37,7 @@ cat <<EOF | sudo fdisk /dev/vdb
 n
 p
 1
-
+8
 
 w
 EOF