Revision: 2724
          http://ipcop.svn.sourceforge.net/ipcop/?rev=2724&view=rev
Author:   gespinasse
Date:     2009-04-18 19:45:54 +0000 (Sat, 18 Apr 2009)

Log Message:
-----------
Replace 1 by 63s. This give the same result but should be more clear of what is 
done.
Explain why we use 63s
This is just because MS have done that for the first windows partition and disk 
are optimized for that.

Modified Paths:
--------------
    ipcop/trunk/src/scripts/disk-partition

Modified: ipcop/trunk/src/scripts/disk-partition
===================================================================
--- ipcop/trunk/src/scripts/disk-partition      2009-04-18 16:52:22 UTC (rev 
2723)
+++ ipcop/trunk/src/scripts/disk-partition      2009-04-18 19:45:54 UTC (rev 
2724)
@@ -70,7 +70,8 @@
   x86)
        erase_partition
        parted_call "$dev mklabel msdos"
-       parted_call "$dev mkpart primary ext2 1 ${root_size}MiB"
+       # disks are optimized for win that had the habit until XP to start 
first partition at 63s
+       parted_call "$dev mkpart primary ext2 63s ${root_size}MiB"
        parted_call "$dev mkpart primary ext2 ${root_size}MiB ${disk_size}MiB"
        parted_call "$dev set 1 boot on"
        if [ x$install_type = x"raid" ]; then


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Ipcop-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ipcop-svn

Reply via email to