diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-08-21 19:22:07 (GMT) |
---|---|---|
committer | Tom Zanussi <tom.zanussi@intel.com> | 2011-08-22 16:18:46 (GMT) |
commit | f222033882ca011ed870eed29124ccf67ee27590 (patch) | |
tree | be6fcd25374045703c1f7b5df7a4a0d54ed75c00 /common/recipes-core | |
parent | b6e1f4f124bf1b1c404a77345614f0839ff5429d (diff) | |
download | meta-intel-f222033882ca011ed870eed29124ccf67ee27590.tar.gz |
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>
Diffstat (limited to 'common/recipes-core')
-rw-r--r-- | common/recipes-core/initrdscripts/initramfs-live-install/init-install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/recipes-core/initrdscripts/initramfs-live-install/init-install.sh b/common/recipes-core/initrdscripts/initramfs-live-install/init-install.sh index 7f2ea7f..7d80190 100644 --- a/common/recipes-core/initrdscripts/initramfs-live-install/init-install.sh +++ b/common/recipes-core/initrdscripts/initramfs-live-install/init-install.sh | |||
@@ -105,13 +105,13 @@ echo "Creating new partition table on /dev/${device} ..." | |||
105 | parted /dev/${device} mklabel msdos | 105 | parted /dev/${device} mklabel msdos |
106 | 106 | ||
107 | echo "Creating boot partition on /dev/${device}1" | 107 | echo "Creating boot partition on /dev/${device}1" |
108 | parted /dev/${device} mkpartfs primary ext2 0 $boot_size | 108 | parted /dev/${device} mkpart primary 0 $boot_size |
109 | 109 | ||
110 | echo "Creating rootfs partition on /dev/${device}2" | 110 | echo "Creating rootfs partition on /dev/${device}2" |
111 | parted /dev/${device} mkpartfs primary ext2 $rootfs_start $rootfs_end | 111 | parted /dev/${device} mkpart primary $rootfs_start $rootfs_end |
112 | 112 | ||
113 | echo "Creating swap partition on /dev/${device}3" | 113 | echo "Creating swap partition on /dev/${device}3" |
114 | parted /dev/${device} mkpartfs primary linux-swap $swap_start $disk_size | 114 | parted /dev/${device} mkpart primary $swap_start $disk_size |
115 | 115 | ||
116 | parted /dev/${device} print | 116 | parted /dev/${device} print |
117 | 117 | ||