meta-intel: update init-install.sh

The parted 3.0 release introduced some API changes such as the removal
of mkpartfs.  This updates init-install.sh to use mkpart instead.

Fixes [YOCTO #1387]

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
Tom Zanussi 2011-08-21 14:22:07 -05:00
parent b6e1f4f124
commit f222033882

View File

@ -105,13 +105,13 @@ echo "Creating new partition table on /dev/${device} ..."
parted /dev/${device} mklabel msdos
echo "Creating boot partition on /dev/${device}1"
parted /dev/${device} mkpartfs primary ext2 0 $boot_size
parted /dev/${device} mkpart primary 0 $boot_size
echo "Creating rootfs partition on /dev/${device}2"
parted /dev/${device} mkpartfs primary ext2 $rootfs_start $rootfs_end
parted /dev/${device} mkpart primary $rootfs_start $rootfs_end
echo "Creating swap partition on /dev/${device}3"
parted /dev/${device} mkpartfs primary linux-swap $swap_start $disk_size
parted /dev/${device} mkpart primary $swap_start $disk_size
parted /dev/${device} print