From: Yu Ke Date: Thu, 30 Sep 2010 12:54:49 +0000 (+0800) Subject: initrdscripts: remove the incorrect moblin message (Bug 368) X-Git-Tag: yocto-4.0~44109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b07cc5a74abb93862f13191cd15d4aa3e1205079;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git initrdscripts: remove the incorrect moblin message (Bug 368) When install the live image into netbook/emenlow, the install tool prompt: # Found drive at /dev/sda. Do you want to install moblin there ? [y/n] The "moblin" here should be replaced by "poky". Fix [BUGID #368] Signed-off-by: Yu Ke --- diff --git a/meta/recipes-core/initrdscripts/files/init-install.sh b/meta/recipes-core/initrdscripts/files/init-install.sh index ecd0a1b44ab..271acc93fff 100644 --- a/meta/recipes-core/initrdscripts/files/init-install.sh +++ b/meta/recipes-core/initrdscripts/files/init-install.sh @@ -21,7 +21,7 @@ for device in 'hda' 'hdb' 'sda' 'sdb' found="yes" while true; do - echo "Found drive at /dev/${device}. Do you want to install moblin there ? [y/n]" + echo "Found drive at /dev/${device}. Do you want to install poky there ? [y/n]" read answer if [ "$answer" = "y" ] ; then break