diff options
Diffstat (limited to 'eclass/vmware-mod.eclass')
-rw-r--r-- | eclass/vmware-mod.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/vmware-mod.eclass b/eclass/vmware-mod.eclass index bf830c5ed607..e1b42345eb87 100644 --- a/eclass/vmware-mod.eclass +++ b/eclass/vmware-mod.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vmware-mod.eclass,v 1.2 2006/08/08 19:16:42 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware-mod.eclass,v 1.3 2006/09/27 12:59:56 wolf31o2 Exp $ # Ensure vmware comes before linux-mod since we want linux-mod's pkg_preinst and @@ -81,13 +81,13 @@ vmware-mod_src_install() { if [[ -n "`echo ${VMWARE_MODULE_LIST} | grep vmmon`" ]]; then dodir /etc/udev/rules.d - echo 'KERNEL=="vmmon*", GROUP="'$VMWARE_GROUP'" MODE=660' > "${D}/etc/udev/rules.d/60-vmware.rules" || die + echo 'KERNEL=="vmmon*", GROUP="'$VMWARE_GROUP'" MODE=660' >> "${D}/etc/udev/rules.d/60-vmware.rules" || die + echo 'KERNEL=="vmnet*", GROUP="'$VMWARE_GROUP'" MODE=660' >> "${D}/etc/udev/rules.d/60-vmware.rules" || die fi linux-mod_src_install } - # Current VMWARE product mappings # 'VME_TOT' = .0 # 'VME_GSX1' = .1 |