OpenWrt Forum Archive

Topic: Update on Linksys WRT1900AC support

The content of this topic has been archived between 16 Sep 2014 and 7 May 2018. Unfortunately there are posts – most likely complete pages – missing.

@cristianbalan

I HIGHLY recommend you install Attitude Adjustment in favour of Barrier Breaker. You can get the firmware image from here: https://github.com/Chadster766/McWRT/re … 2-128k.img

nitroshift

Going by your name, what part of Romania are you from?

(Last edited by nitroshift on 18 Nov 2014, 17:18)

nitroshift wrote:

@cristianbalan

I HIGHLY recommend you install Attitude Adjustment in favour of Barrier Breaker. You can get the firmware image from here: https://github.com/Chadster766/McWRT/re … 2-128k.img

nitroshift

Going by your name, what part of Romania are you from?


Bucharest, Live in US for 10 years smile

nitroshift wrote:

@cristianbalan

I HIGHLY recommend you install Attitude Adjustment in favour of Barrier Breaker. You can get the firmware image from here: https://github.com/Chadster766/McWRT/re … 2-128k.img

nitroshift

Going by your name, what part of Romania are you from?

What's wrong with newest firmware ?

Barrier Breaker is being skipped, work is being focused on Chaos Calmer, which is in early beta's.

nitroshift

On a different note, yesterday I've received the new unit from Linksys, I'm working now on dumping its bootloader and transfer it to the old bricked one.

(Last edited by nitroshift on 19 Nov 2014, 13:38)

nitroshift wrote:

Barrier Breaker is being skipped, work is being focused on Chaos Calmer, which is in early beta's.

nitroshift

On a different note, yesterday I've received the new unit from Linksys, I'm working now on dumping its bootloader and transfer it to the old bricked one.

I hope you find a solution to fix a corrupted or deleted boot loader. Good Luck smile

Thanks, Chad! I'm working on it and am determined to get it done. I managed to dump the first partition and the dump corresponds to what @mmilburn has posted earlier. The problem is that this dump contains multiple images in one file and here comes the tricky part of splitting them. I am also in contact with http://www.denx.de/ and will keep you updated once I get it working.

nitroshift

(Last edited by nitroshift on 19 Nov 2014, 17:19)

mkdir -p /home/thagabe/McWRT/attitude_adjustment/dl
echo "Checking out files from the svn repository..."; mkdir -p /home/thagabe/McWRT/attitude_adjustment/tmp/dl && cd /home/thagabe/McWRT/attitude_adjustment/tmp/dl && rm -rf hotplug2-201 && [ \! -d hotplug2-201 ] && ( svn help export | grep -q trust-server-cert && svn export --non-interactive --trust-server-cert -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 || svn export --non-interactive -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 ) && echo "Packing checkout..." &&     /bin/tar cfz /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz hotplug2-201 && mv /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz /home/thagabe/McWRT/attitude_adjustment/dl/ && rm -rf hotplug2-201;
Checking out files from the svn repository...
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
make[3]: *** [/home/thagabe/McWRT/attitude_adjustment/dl/hotplug2-201.tar.gz] Error 1
make[3]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment/package/hotplug2'
make[2]: *** [package/hotplug2/compile] Error 2
make[2]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make[1]: *** [/home/thagabe/McWRT/attitude_adjustment/staging_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/stamp/.package_compile] Error 2
make[1]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make: *** [world] Error 2


this is the output every time i try to build. Even when i use 'make V=s'

lifehacksback wrote:

mkdir -p /home/thagabe/McWRT/attitude_adjustment/dl
echo "Checking out files from the svn repository..."; mkdir -p /home/thagabe/McWRT/attitude_adjustment/tmp/dl && cd /home/thagabe/McWRT/attitude_adjustment/tmp/dl && rm -rf hotplug2-201 && [ \! -d hotplug2-201 ] && ( svn help export | grep -q trust-server-cert && svn export --non-interactive --trust-server-cert -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 || svn export --non-interactive -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 ) && echo "Packing checkout..." &&     /bin/tar cfz /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz hotplug2-201 && mv /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz /home/thagabe/McWRT/attitude_adjustment/dl/ && rm -rf hotplug2-201;
Checking out files from the svn repository...
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
make[3]: *** [/home/thagabe/McWRT/attitude_adjustment/dl/hotplug2-201.tar.gz] Error 1
make[3]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment/package/hotplug2'
make[2]: *** [package/hotplug2/compile] Error 2
make[2]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make[1]: *** [/home/thagabe/McWRT/attitude_adjustment/staging_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/stamp/.package_compile] Error 2
make[1]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make: *** [world] Error 2


this is the output every time i try to build. Even when i use 'make V=s'

That site that hosts hotplug2 has been down for a while. This is discussed on this thread: https://github.com/Chadster766/McWRT/issues/67

lifehacksback wrote:

mkdir -p /home/thagabe/McWRT/attitude_adjustment/dl
echo "Checking out files from the svn repository..."; mkdir -p /home/thagabe/McWRT/attitude_adjustment/tmp/dl && cd /home/thagabe/McWRT/attitude_adjustment/tmp/dl && rm -rf hotplug2-201 && [ \! -d hotplug2-201 ] && ( svn help export | grep -q trust-server-cert && svn export --non-interactive --trust-server-cert -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 || svn export --non-interactive -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 ) && echo "Packing checkout..." &&     /bin/tar cfz /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz hotplug2-201 && mv /home/thagabe/McWRT/attitude_adjustment/tmp/dl/hotplug2-201.tar.gz /home/thagabe/McWRT/attitude_adjustment/dl/ && rm -rf hotplug2-201;
Checking out files from the svn repository...
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
make[3]: *** [/home/thagabe/McWRT/attitude_adjustment/dl/hotplug2-201.tar.gz] Error 1
make[3]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment/package/hotplug2'
make[2]: *** [package/hotplug2/compile] Error 2
make[2]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make[1]: *** [/home/thagabe/McWRT/attitude_adjustment/staging_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/stamp/.package_compile] Error 2
make[1]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make: *** [world] Error 2


this is the output every time i try to build. Even when i use 'make V=s'

Fix below which will be included in the next AA release\commit of OpenWRT McWRT (in a couple of days):

McWRT/attitude_adjustment/package/hotplug2$ vim Makefile

Change Makefile roughly as shown below:

PKG_NAME:=hotplug2
PKG_REV:=201
PKG_VERSION:=$(PKG_REV)
PKG_RELEASE:=4

#PKG_SOURCE_PROTO:=svn
#PKG_SOURCE_VERSION:=$(PKG_REV)
#PKG_SOURCE_SUBDIR:=hotplug2-$(PKG_VERSION)
#PKG_SOURCE_URL:=http://svn.nomi.cz/svn/isteve/hotplug2
#PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
#PKG_SOURCE_URL:=http://isteve.bofh.cz/~isteve/hotplug2
#PKG_MD5SUM:=ea2c01d027b4002e4e6b0ff266f51a51

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
PKG_MD5SUM:=7bab8ba67555a8400424f3c92ec67579

Sorry to ask this question again since I (in part) asked it before:

Does either the "official" SourceForge firmware (OpenWRT) or McWRT v.1.0.5 for WRT1900AC support using a 4G-dongle for WAN-failover?
Will be getting a Huawei E3272 (4G/3G) modem and wondering if it will work.

karl.wallin wrote:

Sorry to ask this question again since I (in part) asked it before:

Does either the "official" SourceForge firmware (OpenWRT) or McWRT v.1.0.5 for WRT1900AC support using a 4G-dongle for WAN-failover?
Will be getting a Huawei E3272 (4G/3G) modem and wondering if it will work.

Is there an OpenWRT driver for the Huawei E3272 dongle. If not then no but if there is I can try compiling it into OpenWRT McWRT for you.

Chadster766 wrote:
karl.wallin wrote:

Sorry to ask this question again since I (in part) asked it before:

Does either the "official" SourceForge firmware (OpenWRT) or McWRT v.1.0.5 for WRT1900AC support using a 4G-dongle for WAN-failover?
Will be getting a Huawei E3272 (4G/3G) modem and wondering if it will work.

Is there an OpenWRT driver for the Huawei E3272 dongle. If not then no but if there is I can try compiling it into OpenWRT McWRT for you.

Thank you very much (for your offer and reply).
Sadly there does not seem to be any support ATM, at least that is how I understand this post.

I have emailed Huawei though and asked for a Linux driver for the E3272 and will try OpenWRT and your McWRT and see if the modem is supported and report back. If not and regardless I'll happily make the driver available.

karl.wallin wrote:
Chadster766 wrote:
karl.wallin wrote:

Sorry to ask this question again since I (in part) asked it before:

Does either the "official" SourceForge firmware (OpenWRT) or McWRT v.1.0.5 for WRT1900AC support using a 4G-dongle for WAN-failover?
Will be getting a Huawei E3272 (4G/3G) modem and wondering if it will work.

Is there an OpenWRT driver for the Huawei E3272 dongle. If not then no but if there is I can try compiling it into OpenWRT McWRT for you.

Thank you very much (for your offer and reply).
Sadly there does not seem to be any support ATM, at least that is how I understand this post.

I have emailed Huawei though and asked for a Linux driver for the E3272 and will try OpenWRT and your McWRT and see if the modem is supported and report back. If not and regardless I'll happily make the driver available.

Keep in mind we need the driver source code.

Chadster766 wrote:

Keep in mind we need the driver source code.

Ah sorry, so I take it the source code is what the linux driver is built on (and not the same thing as requesting the linux driver)?

karl.wallin wrote:
Chadster766 wrote:

Keep in mind we need the driver source code.

Ah sorry, so I take it the source code is what the linux driver is built on (and not the same thing as requesting the linux driver)?

Most times they do provide the driver source along with a binary just in case you need to custom build the driver for a different Linux OS.

Connecting to openbsd.mirrors.tds.net (openbsd.mirrors.tds.net)|216.165.129.134|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:10 ERROR 404: Not Found.

Download failed.
--2014-11-19 17:09:10--  http://mirror2.openwrt.org/sources/xdd65.013007.tgz
Resolving mirror2.openwrt.org (mirror2.openwrt.org)... 46.4.11.11
Connecting to mirror2.openwrt.org (mirror2.openwrt.org)|46.4.11.11|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:11 ERROR 404: Not Found.

Download failed.
--2014-11-19 17:09:11--  http://downloads.openwrt.org/sources/xdd65.013007.tgz
Resolving downloads.openwrt.org (downloads.openwrt.org)... 78.24.191.177
Connecting to downloads.openwrt.org (downloads.openwrt.org)|78.24.191.177|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:11 ERROR 404: Not Found.

Download failed.
No more mirrors to try - giving up.
make[3]: *** [/home/thagabe/McWRT/attitude_adjustment/dl/xdd65.013007.tgz] Error 2
make[3]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment/package/xdd'
make[2]: *** [package/xdd/compile] Error 2
make[2]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make[1]: *** [/home/thagabe/McWRT/attitude_adjustment/staging_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/stamp/.package_compile] Error 2
make[1]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make: *** [world] Error 2

New Error message :'/

lifehacksback wrote:

Connecting to openbsd.mirrors.tds.net (openbsd.mirrors.tds.net)|216.165.129.134|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:10 ERROR 404: Not Found.

Download failed.
--2014-11-19 17:09:10--  http://mirror2.openwrt.org/sources/xdd65.013007.tgz
Resolving mirror2.openwrt.org (mirror2.openwrt.org)... 46.4.11.11
Connecting to mirror2.openwrt.org (mirror2.openwrt.org)|46.4.11.11|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:11 ERROR 404: Not Found.

Download failed.
--2014-11-19 17:09:11--  http://downloads.openwrt.org/sources/xdd65.013007.tgz
Resolving downloads.openwrt.org (downloads.openwrt.org)... 78.24.191.177
Connecting to downloads.openwrt.org (downloads.openwrt.org)|78.24.191.177|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-11-19 17:09:11 ERROR 404: Not Found.

Download failed.
No more mirrors to try - giving up.
make[3]: *** [/home/thagabe/McWRT/attitude_adjustment/dl/xdd65.013007.tgz] Error 2
make[3]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment/package/xdd'
make[2]: *** [package/xdd/compile] Error 2
make[2]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make[1]: *** [/home/thagabe/McWRT/attitude_adjustment/staging_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/stamp/.package_compile] Error 2
make[1]: Leaving directory `/home/thagabe/McWRT/attitude_adjustment'
make: *** [world] Error 2

New Error message :'/

Run "make menuconfig", then go into Utilities and unselect xdd. I guess the package is no longer available.

It finally compiled smile i guess xdd isnt on up anymore

(Last edited by lifehacksback on 20 Nov 2014, 04:43)

lifehacksback wrote:

It finally compiled smile i guess xdd isnt on up anymore

I have the file in my /dl folder and will commit it tonight. The package xdd is critical for AA package management.

SUCCESS!!!!

Got my bricked router up to the u-boot command prompt! After lunch will start writing the tutorial.

@Chad

How can I upload the two files needed for debricking on your repo?

nitroshift

(Last edited by nitroshift on 20 Nov 2014, 14:21)

karl.wallin wrote:

Thank you very much (for your offer and reply).
Sadly there does not seem to be any support ATM, at least that is how I understand this post.

I have emailed Huawei though and asked for a Linux driver for the E3272 and will try OpenWRT and your McWRT and see if the modem is supported and report back. If not and regardless I'll happily make the driver available.

The E3272 should be supported by the usual set of 3G/LTE drivers.  I'd guess either "cdc_ether" or "huawei_cdc_ncm", in combination with the "option" driver for the serial functions.  You should definitely not need any driver from Huawei.

Note that all modern Huawei modems have multiple identities, and that referring to "E3272" is pretty pointless.  It can mean a number of different things depending on the actual firmware installed on the modem and the mode this firmware is running in. Post the output of "lsusb -v" or "cat /sys/kernel/debug/usb/devices".

Chadster766 wrote:
lifehacksback wrote:

It finally compiled smile i guess xdd isnt on up anymore

I have the file in my /dl folder and will commit it tonight. The package xdd is critical for AA package management.

The xdd file is included in OpenWRT McWRT commit AAv1.0.7

nitroshift wrote:

SUCCESS!!!!

Got my bricked router up to the u-boot command prompt! After lunch will start writing the tutorial.

@Chad

How can I upload the two files needed for debricking on your repo?

nitroshift

Awesome nitroshift! Your timing is perfect. Just recently another user emailed me that he deleted his boot loader.

I have given you Collaborator rights to the OpenWRT McWRT repo.

Also I created an FTP account so you can upload files to the ProTechs-Online webserver for the Wiki.

Skype me for FTP details.

Do the new enhancements with AAv1.0.7, improve overall functionality? Or is it just to address the Openvpn issues?

LookingForMyMojo wrote:

Do the new enhancements with AAv1.0.7, improve overall functionality? Or is it just to address the Openvpn issues?

It should improve overall functionality and will become the new stable release if no major issues are reported.

Sorry, posts 1401 to 1400 are missing from our archive.