From: Matthias Hentges Date: Sun, 5 Feb 2006 19:24:27 +0000 (+0000) Subject: altboot: Fixed a type. I wonder how that got in there... X-Git-Tag: Release-2010-05/1~9453^2~2438 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=638a56f9dbe28f640300cf0f8f40d732ac3a92ee;p=openembedded.git altboot: Fixed a type. I wonder how that got in there... --- diff --git a/packages/altboot/files/altboot.func b/packages/altboot/files/altboot.func index 612d875a9a..5651ef9f9d 100644 --- a/packages/altboot/files/altboot.func +++ b/packages/altboot/files/altboot.func @@ -374,7 +374,7 @@ mount_home(){ home_fstab="`grep "/home " /etc/fstab`" home_dev="`echo "$home_fstab" | awk '{print $1}'`" home_fs="`echo "$home_fstab" | awk '{print $3}'`" - home_options="`echo "$home_fstan" | awk '{print $4}'`" + home_options="`echo "$home_fstab" | awk '{print $4}'`" mount -t "$home_fs" -o $home_options "$home_dev" /home fi