diff options
author | Yu Ke <ke.yu@intel.com> | 2010-09-30 20:54:49 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-30 10:14:07 -0700 |
commit | b07cc5a74abb93862f13191cd15d4aa3e1205079 (patch) | |
tree | 413ea57c35818cd865aeede695bf2d8ee1502bd1 /meta | |
parent | aca435f2381f8ec793074c10533ce9d97a1c578e (diff) | |
download | poky-b07cc5a74abb93862f13191cd15d4aa3e1205079.tar.gz |
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 <ke.yu@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/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 ecd0a1b44a..271acc93ff 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' | |||
21 | found="yes" | 21 | found="yes" |
22 | 22 | ||
23 | while true; do | 23 | while true; do |
24 | echo "Found drive at /dev/${device}. Do you want to install moblin there ? [y/n]" | 24 | echo "Found drive at /dev/${device}. Do you want to install poky there ? [y/n]" |
25 | read answer | 25 | read answer |
26 | if [ "$answer" = "y" ] ; then | 26 | if [ "$answer" = "y" ] ; then |
27 | break | 27 | break |