From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from duke.felloff.net ([216.126.196.34]) by ur; Mon Feb 20 16:42:17 EST 2017 Message-ID: <20ca11d96c13f31341876214d60f41bb@felloff.net> Date: Mon, 20 Feb 2017 22:42:11 +0100 From: cinap_lenrek@felloff.net To: 9front@9front.org Subject: Re: [9front] Several 9front Bug Reports (fwd) In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: proven social STM NoSQL database theres no reason to think hardware support would change after install. the exact same kernel is used for the life system as what will get installed on disk. we do not have a driver for nvidia MCP61... not sure if its worth the time writing one for such an old card except for the exercise... for the machine with the realtek, try this patch to add the mac revision to the driver: diff -r 0e4d5b61d394 sys/src/9/pc/ether8169.c --- a/sys/src/9/pc/ether8169.c Mon Feb 20 22:01:54 2017 +0100 +++ b/sys/src/9/pc/ether8169.c Mon Feb 20 22:37:21 2017 +0100 @@ -120,6 +120,7 @@ Macv28 = 0x2c000000, /* RTL8111/8168B */ Macv29 = 0x40800000, /* RTL8101/8102E */ Macv30 = 0x24000000, /* RTL8101E? (untested) */ + Macv39 = 0x44800000, /* RTL8106E (untested) */ Macv40 = 0x4c000000, /* RTL8168G */ Macv44 = 0x5c800000, /* RTL8411B */ Macv45 = 0x50800000, /* RTL8168GU */ @@ -1051,6 +1052,7 @@ case Macv28: case Macv29: case Macv30: + case Macv39: case Macv40: case Macv44: case Macv45: -- cinap