summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/initrdscripts
diff options
context:
space:
mode:
authorMei Lei <lei.mei@intel.com>2011-08-10 22:35:59 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-12 17:21:54 +0100
commit577a9145124582de7c4288dffe993eb7a3459162 (patch)
tree80af6b03ed88a00f79cea6f0e557db74d7b422c7 /meta/recipes-core/initrdscripts
parent83ada5598fbc67705bf613f8f4a42674bd1432ae (diff)
downloadpoky-577a9145124582de7c4288dffe993eb7a3459162.tar.gz
init-install.sh: Fix make partition and make file system issues
[YOCTO #1151] Change the offset from the beginning of the disk to aligne the blocks. In this script, we use mkfs.ext3 to create file system after partition, but we use mkpartfs to create file system repeatly, and get some warnings about choose another specific tools to create file system for reliability. So use mkpart instead of mkpartfs and only use mkfs.ext3 to create file system. (From OE-Core rev: 67c9804e0416defb7c3f69bd02bbae3710e5be0a) Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/initrdscripts')
-rw-r--r--meta/recipes-core/initrdscripts/files/init-install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-install.sh b/meta/recipes-core/initrdscripts/files/init-install.sh
index b9d9029d21..5e6b81c9d3 100644
--- a/meta/recipes-core/initrdscripts/files/init-install.sh
+++ b/meta/recipes-core/initrdscripts/files/init-install.sh
@@ -105,13 +105,13 @@ echo "Creating new partition table on /dev/${device} ..."
105parted /dev/${device} mklabel msdos 105parted /dev/${device} mklabel msdos
106 106
107echo "Creating boot partition on /dev/${device}1" 107echo "Creating boot partition on /dev/${device}1"
108parted /dev/${device} mkpartfs primary ext2 0 $boot_size 108parted /dev/${device} mkpart primary 1 $boot_size
109 109
110echo "Creating rootfs partition on /dev/${device}2" 110echo "Creating rootfs partition on /dev/${device}2"
111parted /dev/${device} mkpartfs primary ext2 $rootfs_start $rootfs_end 111parted /dev/${device} mkpart primary $rootfs_start $rootfs_end
112 112
113echo "Creating swap partition on /dev/${device}3" 113echo "Creating swap partition on /dev/${device}3"
114parted /dev/${device} mkpartfs primary linux-swap $swap_start $disk_size 114parted /dev/${device} mkpart primary $swap_start $disk_size
115 115
116parted /dev/${device} print 116parted /dev/${device} print
117 117