From owner-freebsd-mips@FreeBSD.ORG Fri Jun 19 21:34:23 2015 Return-Path: Delivered-To: freebsd-mips@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4C9CC3A for ; Fri, 19 Jun 2015 21:34:23 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from pmta2.delivery4.ore.mailhop.org (pmta2.delivery4.ore.mailhop.org [54.200.247.200]) by mx1.freebsd.org (Postfix) with SMTP id 9F293371 for ; Fri, 19 Jun 2015 21:34:23 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from ilsoft.org (unknown [73.34.117.227]) by outbound1.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Fri, 19 Jun 2015 21:34:06 +0000 (UTC) Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id t5JLYFoi017957; Fri, 19 Jun 2015 15:34:15 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1434749655.1415.105.camel@freebsd.org> Subject: Re: TP-Link WDR-4300 - Success!!! From: Ian Lepore To: ticso@cicely.de Cc: Adrian Chadd , Bernd Walter , "freebsd-mips@freebsd.org" Date: Fri, 19 Jun 2015 15:34:15 -0600 In-Reply-To: <20150619212042.GE34133@cicely7.cicely.de> References: <20150616162654.GB14540@cicely7.cicely.de> <20150616173105.GC14540@cicely7.cicely.de> <20150616175831.GD14540@cicely7.cicely.de> <20150619202622.GC34133@cicely7.cicely.de> <20150619210930.GD34133@cicely7.cicely.de> <20150619212042.GE34133@cicely7.cicely.de> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.12.10 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 21:34:23 -0000 On Fri, 2015-06-19 at 23:20 +0200, Bernd Walter wrote: > On Fri, Jun 19, 2015 at 11:09:30PM +0200, Bernd Walter wrote: > > On Fri, Jun 19, 2015 at 10:26:22PM +0200, Bernd Walter wrote: > > > On Tue, Jun 16, 2015 at 12:10:13PM -0700, Adrian Chadd wrote: > > > > Ok, right. I nthat case it's just 2x2 wifi, and gige ethernet. > > > > > > > > the config string to put in the build cfg file, fro mopenwrt: > > > > > > > > $(eval $(call SingleProfile,TPLINK-LZMA,64kraw,TLWDR3600V1,tl-wdr3600-v1,TL-WDR4300,ttyS0,115200,0x36000001,1,8Mlzma)) > > > > $(eval $(call SingleProfile,TPLINK-LZMA,64kraw,TLWDR4300V1,tl-wdr4300-v1,TL-WDR4300,ttyS0,115200,0x43000001,1,8Mlzma)) > > > > > > So if I got it right, then all I need to change is the TPLINK_HARDWARE_ID > > > from 0x36000001 to 0x43000001, right? > > > > > > > .. same kernel config should work fine. I'll go update > > > > freebsd-wifi-build tonight once I wrap up with work. > > > > > > git pull didn't show up anything new. > > > Nevertheless I'm building with the mentioned change right now. > > > > It's booting :-) > > Next step will be trying to populate an USB-Stick with a > > full base root-fs. > > Will take some time because of this UFS-byteorder thing > > If anyone has a tip to do using an ARM or i386. > > Last time I did a NFS-root carambola 2 and copy'ed from > > NFS to local stick using this board. > > Maybe I don't need anything special. > newfs and tar are there. > Guess it's easiest to use the now running system and extract a tar > from raw USB stick onto the target stick. > You can also use nc and tar to transfer a hierarchy... on the receiver nc -l 1200 | tar -xpf - -C / then on the sender tar -cf - -C . | nc -N target_ip 1200 -- Ian