From: Paul Sokolovsky Date: Thu, 14 Feb 2008 00:30:59 +0000 (+0000) Subject: initramfs-module-bootmenu 1.0: Add jffs2 to list of recoginized FSes. X-Git-Tag: Release-2010-05/1~7686^2~3^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44c61051f9b52a94db2609f6754b04c7ddda6550;p=openembedded.git initramfs-module-bootmenu 1.0: Add jffs2 to list of recoginized FSes. * This is likely not enough to make jffs2 boot work. --- diff --git a/packages/initrdscripts/files/30-bootmenu.sh b/packages/initrdscripts/files/30-bootmenu.sh index 319f85aa6e..7bc1429b1b 100644 --- a/packages/initrdscripts/files/30-bootmenu.sh +++ b/packages/initrdscripts/files/30-bootmenu.sh @@ -81,7 +81,7 @@ while read maj min nblk dev; do fi get_partition_type - if [ "$fstype" != "ext2" -a "$fstype" != "ext3" -a "$fstype" != "vfat" ]; then + if [ "$fstype" != "ext2" -a "$fstype" != "ext3" -a "$fstype" != "vfat" -a "$fstype" != "jffs2" ]; then # continue true fi diff --git a/packages/initrdscripts/initramfs-module-bootmenu_1.0.bb b/packages/initrdscripts/initramfs-module-bootmenu_1.0.bb index 19e7403b83..e87ba69776 100644 --- a/packages/initrdscripts/initramfs-module-bootmenu_1.0.bb +++ b/packages/initrdscripts/initramfs-module-bootmenu_1.0.bb @@ -1,5 +1,5 @@ SRC_URI = "file://30-bootmenu.sh" -PR = "r7" +PR = "r8" DESCRIPTION = "An initramfs module with UI for selection of boot device." RDEPENDS = "klibc-utils-fstype initramfs-uniboot initramfs-module-block initramfs-module-loop initramfs-module-nfs" # For VFAT mounting.