From owner-freebsd-current Fri Dec 20 9:45:31 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DF9B37B401 for ; Fri, 20 Dec 2002 09:45:30 -0800 (PST) Received: from scl8owa02.int.exodus.net (scl8out02.exodus.net [66.35.230.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E51B43ED8 for ; Fri, 20 Dec 2002 09:45:24 -0800 (PST) (envelope-from Maksim.Yevmenkin@cw.com) Received: from scl8owa01.int.exodus.net ([66.35.230.241]) by scl8owa02.int.exodus.net with Microsoft SMTPSVC(5.0.2195.5329); Fri, 20 Dec 2002 09:45:24 -0800 Received: from exodus.net ([165.193.27.35]) by scl8owa01.int.exodus.net over TLS secured channel with Microsoft SMTPSVC(5.0.2195.5329); Fri, 20 Dec 2002 09:45:24 -0800 Message-ID: <3E035696.2090909@exodus.net> Date: Fri, 20 Dec 2002 09:42:46 -0800 From: Maksim Yevmenkin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20021126 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Yoshinori KASAZAKI Cc: freebsd-current@FreeBSD.ORG Subject: Re: if_tap is working ? References: <20021220235558.6c4352a6.mia@gold.ocn.ne.jp> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 20 Dec 2002 17:45:24.0304 (UTC) FILETIME=[9310F500:01C2A84F] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Yoshinori KASAZAKI wrote: >hi, guys. > >Does anyone have VMware2 port running successfully on -current ? > i'm :) > >my VMware2 port's startup script says > /usr/local/etc/rc.d/vmware.sh: cannot create /compat/linux/dev/vmnet1: Device not configured > >I digged into this a little and found that this message is from the line > echo -n > $dev_vmnet1 >here, $dev_vmnet1 points to /usr/compat/linux/dev/vmnet1. > >if_tap is loaded as KLD as follows: > 29 1 0xc3acd000 4000 if_tap.ko > what does `ls -la /usr/compat/linux/dev/vmnet1' say? /usr/compat/linux/dev/vmnet1 should be symlink to /dev/vmnet1 vmware2 still wants to create device nodes under /linux/dev/ not symlinks. someone please fix --- pre-install.orig Fri Dec 20 09:40:06 2002 +++ pre-install Fri Dec 20 09:40:43 2002 @@ -18,7 +18,8 @@ mknod ${linux_dev}/null c 2 2 chmod 666 ${linux_dev}/null echo Creating vmnet1 node -mknod /compat/linux/dev/vmnet1 c 149 65537 +rm /compat/linux/dev/vmnet1 +ln -s /dev/vmnet1 /compat/linux/dev/vmnet1 echo Creating $linux_dev/hd\? mknod ${linux_dev}/hda b 0 0x00010002 mknod ${linux_dev}/hdb b 0 0x0001000a >my -current is built yesterday and I've even re-installed VMware2 port a few times. >CPUTYPE and no special CFLAGS etc are not defined in make.conf. > >same script works on -stable. >Am I missing anything obvious ? > > > not really :) just a DEVFS side effect thanks, max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message