From patchwork Mon Jul 9 15:47:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 22/41] init-install: Correct ext2->ext3 typo in logging Date: Mon, 09 Jul 2012 15:47:36 -0000 From: Saul Wold X-Patchwork-Id: 31469 Message-Id: <7a942dd6fbb4230cab9755e37a546c0b49cde1c9.1341802889.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Darren Hart We create both the boot and root partitions as ext3 now, update the logging accordingly. Signed-off-by: Darren Hart --- .../initrdscripts/files/init-install.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-core/initrdscripts/files/init-install.sh b/meta/recipes-core/initrdscripts/files/init-install.sh index 3005f20..8d21dd1 100644 --- a/meta/recipes-core/initrdscripts/files/init-install.sh +++ b/meta/recipes-core/initrdscripts/files/init-install.sh @@ -123,7 +123,7 @@ parted /dev/${device} mkpart primary $swap_start $disk_size parted /dev/${device} print -echo "Formatting $bootfs to ext2..." +echo "Formatting $bootfs to ext3..." mkfs.ext3 $bootfs echo "Formatting $rootfs to ext3..."