Title: [121647] trunk/Tools
Revision
121647
Author
[email protected]
Date
2012-07-01 17:34:09 -0700 (Sun, 01 Jul 2012)

Log Message

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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (121646 => 121647)


--- trunk/Tools/ChangeLog	2012-07-02 00:27:20 UTC (rev 121646)
+++ trunk/Tools/ChangeLog	2012-07-02 00:34:09 UTC (rev 121647)
@@ -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  <[email protected]>
+
+        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.

Modified: trunk/Tools/EWSTools/cold-boot.sh (121646 => 121647)


--- trunk/Tools/EWSTools/cold-boot.sh	2012-07-02 00:27:20 UTC (rev 121646)
+++ trunk/Tools/EWSTools/cold-boot.sh	2012-07-02 00:34:09 UTC (rev 121647)
@@ -37,8 +37,8 @@
 n
 p
 1
+8
 
-
 w
 EOF
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to