Linksys 32X oem firmware is out........

Post new topic   Reply to topic    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.)
Goto page Previous  1, 2, 3, ... 9, 10, 11  Next
Author Message
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Tue Sep 19, 2017 5:47    Post subject: Reply with quote
That would be awesome!

Wonder if brainslayer can adapt some of that code for dd-wrt lol!

Guess the custom firmware would work, but updating, would probably have to be turned off since it would expect the changed file structure.


Last edited by Adamcarter on Wed Sep 20, 2017 0:39; edited 1 time in total
Sponsor
aprilthemoo
DD-WRT Novice


Joined: 16 Sep 2017
Posts: 3

PostPosted: Tue Sep 19, 2017 12:53    Post subject: Reply with quote
I'm half wondering if they meant to include everything they did in that GPL download. The compiled versions of all their proprietary stuff (including the web UI) is included. Strangely the instructions for their Killer prioritization mention installation against the OpenWRT for WRT1900ACS. Very strange.
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Tue Sep 19, 2017 14:15    Post subject: Reply with quote
Probably not. I think some low level programmer was given the task of uploading the stuff.

I wonder of the 1900 isnt powerful enough for the prioritization?

Last question for you? Have you ever looked at the synology routers? Apparently they are arm processors too, you think their firmware could be modified to run on a 3200acm.

My 3200 acm has a faster processor than my nas lol
inteliboy
DD-WRT Novice


Joined: 03 May 2011
Posts: 44
Location: Poland

PostPosted: Tue Sep 19, 2017 16:52    Post subject: Reply with quote
I managed to compile the firmware which simplified to whole crossflashing process. I was not able to make it directly flashable from WRT3200ACM so still everything needs to be done via serial console.

in U-boot console issue:
Code:
setenv mtdparts 'mtdparts=armada-nand:2048K(uboot)ro,128K(u_env),256K(s_env),256K@8064K(devinfo),123m@9m(firmware1),123m@132m(firmware2)'
setenv priKernAddr 0x0900000
setenv altKernAddr 0x8400000
setenv altFwSize 0x7b00000
setenv priFwSize 0x7b00000
setenv nandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock6;nand read $defaultLoadAddr $priKernAddr $priKernSize; bootz $defaultLoadAddr'
setenv altnandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock8;nand read $defaultLoadAddr $altKernAddr $altKernSize; bootz $defaultLoadAddr'
save

Set PC's IP to 192.168.1.254 / 255.255.255.0 and serve provided rango.img via TFTP and after reboot you'll be running WRT32X firmware Smile
To flash served image issue in U-Boot:
Code:
run update_both_images

To boot type: boot and press enter Razz
rango.img to download: http://www108.zippyshare.com/v/lgm43Bri/file.html

To reverse the process:
Download and serve via TFTP any WRT3200ACM firmware file (only full factory images), be that LEDE, OpenWrt, oficial firmware and change the name to rango.img
And use this commands:
Code:
setenv mtdparts 'mtdparts=armada-nand:2048K(uboot)ro,128K(u_env),256K(s_env),256K@8064K(devinfo),1920K@8320K(sysdiag),80m@10m(kernel),74m@16m(rootfs),80m@90m(alt_kernel),74m@96m(alt_rootfs),160m@10m(ubifs),-@170m(syscfg)'
setenv nandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock6 ro rootdelay=1 rootfstype=jffs2 earlyprintk $mtdparts;nand read $defaultLoadAddr $priKernAddr $priKernSize; bootm $defaultLoadAddr'
setenv altnandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock8 ro rootdelay=1 rootfstype=jffs2 earlyprintk $mtdparts;nand read $defaultLoadAddr $altKernAddr $altKernSize; bootm $defaultLoadAddr'
setenv priKernAddr 0x0a00000
setenv altKernAddr 0x5a00000
setenv altFwSize 0x5000000
setenv priFwSize 0x5000000
save
run update_both_images
boot


Last edited by inteliboy on Tue Sep 19, 2017 17:15; edited 1 time in total
cybrnook
DD-WRT User


Joined: 08 Jan 2014
Posts: 279

PostPosted: Tue Sep 19, 2017 17:13    Post subject: Reply with quote
inteliboy wrote:
I managed to compile the firmware which simplified to whole crossflashing process. I was not able to make it directly flashable from WRT3200ACM so still everything needs to be done via serial console.

in U-boot console issue:
Code:
setenv mtdparts 'mtdparts=armada-nand:2048K(uboot)ro,128K(u_env),256K(s_env),256K@8064K(devinfo),123m@9m(firmware1),123m@132m(firmware2)'
setenv priKernAddr 0x0900000
setenv altKernAddr 0x8400000
setenv altFwSize 0x7b00000
setenv priFwSize 0x7b00000
setenv nandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock6;nand read $defaultLoadAddr $priKernAddr $priKernSize; bootz $defaultLoadAddr'
setenv altnandboot 'setenv bootargs console=ttyS0,115200 root=/dev/mtdblock8;nand read $defaultLoadAddr $altKernAddr $altKernSize; bootz $defaultLoadAddr'
save

Set PC's IP to 192.168.1.254 / 255.255.255.0 and serve provided rango.img via TFTP and after reboot you'll be running WRT32X firmware Smile
To flash served image issue in U-Boot:
Code:
run update_both_images

To boot type: boot and press enter Razz
rango.img to download: http://www108.zippyshare.com/v/lgm43Bri/file.html

In theory, once this is done. Does this mean that 3200ACM cross flashed devices can natively flash Linksys provided OEM builds as they update for 32X?
inteliboy
DD-WRT Novice


Joined: 03 May 2011
Posts: 44
Location: Poland

PostPosted: Tue Sep 19, 2017 17:16    Post subject: Reply with quote
yes, it will then accept any future oficial images provided by Linksys.
cybrnook
DD-WRT User


Joined: 08 Jan 2014
Posts: 279

PostPosted: Tue Sep 19, 2017 17:27    Post subject: Reply with quote
Great job @aprilthemoo for pioneering, and @inteliboy for spelling it out for the community. I see you posted in OpenWRT and LEDE.

I will be trying this later this weekend.
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Wed Sep 20, 2017 0:41    Post subject: Reply with quote
@inteliboy

If we install 32x firmware will we still be able to install dd-wrt on second partition. Or does bs need to make a dd-wrt with the new partition layout as well?
128bit
DD-WRT User


Joined: 03 May 2017
Posts: 132
Location: NC, USA

PostPosted: Wed Sep 20, 2017 2:01    Post subject: Reply with quote
i'm confused. i went to the linksys wrt3200acm support and they still have the may version there for download.

so why mess around with these seemingly "unofficial" versions? are you guys doing unofficial beta for l-sys??

Smile

_________________
asus rt-ac86u stock: 3.0.0.4.384_45149
wrt3200acm: r34578 {sunset}
"why nibble when u can take a byte."
myersw
DD-WRT Guru


Joined: 13 Jun 2006
Posts: 1608
Location: SE Michigan USA

PostPosted: Wed Sep 20, 2017 2:09    Post subject: Reply with quote
128bit wrote:
i'm confused. i went to the linksys wrt3200acm support and they still have the may version there for download.

so why mess around with these seemingly "unofficial" versions? are you guys doing unofficial beta for l-sys??

Smile


They are playing with getting wrt3200x firmware to run on their wrt3200 and being successful. Having fun.

I see no reason to force my wrt3200 to run wrt32x firmware, but I am not the experimenter some are. Some just do it to prove it can be done.

_________________
Unifi Security Gateway: Unifi Firmware
Netgear r7800: Voxel Firmware
Modem:Netgear CM500V voice and Data.
ISP:Comcast
tutorial for flashing "WRT" series:
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=287813
DD-WRT Installation, Upgrade & Basic Setup–Cliff Notes:
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117
Kong DD-WRT Config Tutorial:
http://www.instructables.com/id/Install-and-Configure-a-DD-WRT-Kong-Router/
I tried to be normal once. Worst 2 minutes ever.
128bit
DD-WRT User


Joined: 03 May 2017
Posts: 132
Location: NC, USA

PostPosted: Wed Sep 20, 2017 2:59    Post subject: Reply with quote
myersw wrote:
128bit wrote:
i'm confused. i went to the linksys wrt3200acm support and they still have the may version there for download.

so why mess around with these seemingly "unofficial" versions? are you guys doing unofficial beta for l-sys??

Smile


They are playing with getting wrt3200x firmware to run on their wrt3200 and being successful. Having fun.

I see no reason to force my wrt3200 to run wrt32x firmware, but I am not the experimenter some are. Some just do it to prove it can be done.


gotcha! they're better men than me. over 8 days now with r33345. just wish 5ghz was mre stable.

good hearing from u, bill

_________________
asus rt-ac86u stock: 3.0.0.4.384_45149
wrt3200acm: r34578 {sunset}
"why nibble when u can take a byte."
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Wed Sep 20, 2017 3:18    Post subject: Reply with quote
It’s multifactorial.

1) This isnt really a beta firmware. This is an official licensed firmware made for the 3200acm hardware, with killer prioritization for those of us who have killer ethernet cards wired to our 3200acm.

2) the gui is slightly more cool! It supports openvpn client not just server. The oem linksys 3200acm may support client now, but have been using dd-wrt since i bought it i dont know anymore.

3) it’s turns linkysys’ old flagship into it’s new flagship

4) and also, just to say it could be done...

I’m hoping kong and bs both look at some of their propriatary code, maybe some stuff can be pilfered, improved upon, and maybe incorporated into dd-wrt.
inteliboy
DD-WRT Novice


Joined: 03 May 2011
Posts: 44
Location: Poland

PostPosted: Wed Sep 20, 2017 6:14    Post subject: Reply with quote
@Adamcarter You can't so far flash anything other than the WRT32X firmware as there are no other images for the WRT32X out there. You'll need to ask BrainSlayer to build an image for WRT32X which should not be a problem as all it takes is WRT32X dts file available in the GPL source. I only wish there was an easy instruction to compile DD-WRT on our own Razz
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Wed Sep 20, 2017 6:24    Post subject: Reply with quote
That’s what i thought. Guess we just have to wait and see.
Xeon2k8
DD-WRT Guru


Joined: 11 Feb 2016
Posts: 1288

PostPosted: Wed Sep 20, 2017 7:45    Post subject: Reply with quote
inteliboy wrote:
@Adamcarter You can't so far flash anything other than the WRT32X firmware as there are no other images for the WRT32X out there. You'll need to ask BrainSlayer to build an image for WRT32X which should not be a problem as all it takes is WRT32X dts file available in the GPL source. I only wish there was an easy instruction to compile DD-WRT on our own Razz

Help yourself
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=269372

_________________
R6400v2 (boardID:30) - Kong 36480 running since 03/09/18 - (AP - DNSMasq - AdBlocking - QoS)
R7800 - BS 31924 running since 05/26/17 - (AP - OpenVPN Client - DNSMasq - AdBlocking - QoS)
R7000 - BS 30771 running since 12/16/16 - (AP - NAS - FTP - SMB - OpenVPN Server - Transmission - DDNS - DNSMasq - AdBlocking - QoS)
R6250 - BS 29193 running since 03/20/16 - (AP - NAS - FTP - SMB - DNSMasq - AdBlocking)
Goto page Previous  1, 2, 3, ... 9, 10, 11  Next Display posts from previous:    Page 2 of 11
Post new topic   Reply to topic    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.) All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum