mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00
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:
parent
b6e1f4f124
commit
f222033882
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user