diff options
author | Matthias Hentges <oe@hentges.net> | 2006-02-05 19:24:27 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-05 19:24:27 +0000 |
commit | 638a56f9dbe28f640300cf0f8f40d732ac3a92ee (patch) | |
tree | 085ece8d3116b1561fd72c448583f685d8a7bdb2 | |
parent | 6843b7cb49b0e0ac01d6e6d3599a64ac1b5dbbb5 (diff) |
altboot: Fixed a type. I wonder how that got in there...
-rw-r--r-- | packages/altboot/files/altboot.func | 2 |
1 files changed, 1 insertions, 1 deletions
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 |