E8350 why not supported by OpenWrt

Thanks for the feedback.
Make sure you know how to debrick your device if something goes wrong:
https://openwrt.org/toh/netgear/netgear_r7500

  • can you try the factory image again over the WEB interface?
    I've re-uploaded the 7500v1 with minimum packages. (minimal size). May be the image size was the problem as the other part of the build is basically the same.
    If it is working with the standard openwrt image. It should be working with this customized test image too.

I have one additional question:

  • Have you tried sysupgrade -n openwrt..... after you flash it first with the standard openwrt?

I know debrick procedure :slight_smile: .
Smaller image was installable directly from netgear firmware.
I can't find 5G radio for wifi in your firmware.
Unfortunately I have no enough time for testing and studying OpenWrt how-to.
I will let you know soon.
Thanks

Can you paste me the output of commands:
cat /etc/rc.local
dmesg
lsmod

i have got a problem , i mount my usbdevice with netshare with smbV4 and everything is ok when i use my computer(system windows 10) to browse my device the floder is empty with no write&read access authorization,can"t see any files of the usbdevice with format ntfs

NTFS FS package is not pre-installed into the image, you can manually install it:

opkg install kmod-fs-ntfs_5.4.52-1_arm_cortex-a15_neon-vfpv4.ipk

  • re-plug the drive
    and than make sure you can mount & NTFS/files under the openwrt console(directly in openwrt)?
    mount
    mount /dev/sda1 /mnt - or whatever your mount point is.
    df -h
    cd /mnt
    ls -ls
    fdisk -l

Any feedback on the 5Ghz wifi? Have you been able to test it?

Tested for some time, seems to be stable speed it excelent, enabled it from ui in Generic 802.11bg how to make possible to set password from it ?

More wifi settings are in:
cat /etc/rc.local
To edit it with vi
vi /etc/rc.local

could you please paste rc.local the settings to me with a txt type,only if you change the wifi name and password to blank to test....

rc.local wifi settings are embedded into the last test image. Once you upgrade you will see it under
cat /etc/rc.local

sysupgrade -n /tmp/openwrt.....ubi

Hi, I was on your earlier e8350 test firmware and I tried upgrading to the latest one with Quantenna wifi but failed. When doing sysupgrade I can't do sysupgrade -n because of the "v1" and I had to use -F to force flash, but after reboot it would be back on the old firmware without the 5G driver. It seems like the flash wasn't successful.
Did I miss anything in the upgrade? Or do I need to flash from stock firmware?

Use the de-bricking procedure with the factory image(no need to go back to stock)

https://openwrt.org/inbox/toh/linksys/linksys_ea8350_1

I tried that and also unable to flash. Got this after clicking "reboot and recover":

Invalid Image

ERROR - the image you uploaded failed to pass verification.

Update: I flashed stock and successfully flashed factory.bin

Also, it seems like the model name of the router (shown in system status in the overview page) is still incorrect. In the last test build it showed "EA8300 V1", in this version it showed "EA8350 V1" instead of "E8350 V1".

I'll fix the model name.
Have you tested the 5Ghz wifi?

I finally switched to openwrt from stock. I even managed to update to your build. But when trying to activate 5Ghz the rc.local file is empty. (R7500)

5G wifi works but I haven't have time to meaningfully test it yet. We try some more stuff over the weekend.

here is the rc.local, it should be there after sysupgrade of r7500 if you use "-n" option - do not keep the old config files.
sysupgrade -n /tmp/open....
If you add it manually, please make sure it is executable
chmod 755 /etc/rc.local

#!/bin/bash
export PATH=$PATH:/usr/bin:/usr/sbin


###########################################
### 5G Quantenna wifi 			###
### INITIALIZATION part - do not edit	### 
###########################################
# run automatically on start-up modprobe qdpc-host
COUNT=0
WIFI_INIT=`dmesg |grep -c "Connection established with Target BBIC4 board"`
while [ "$WIFI_INIT" = "0" ] ;do
	sleep 1
	WIFI_INIT=`dmesg |grep -c "Connection established with Target BBIC4 board"`
	let COUNT+=1
	if [ "$COUNT" -gt 60 ];then
		logger "Error 1 in 5G wifi pcie2 firmware initialization"
		exit 1
		break
	fi
done

# start wifi configuration and start wifi
ifconfig host0 1.1.1.1 netmask 255.255.255.252 up
echo "1.1.1.2" >  /tmp/qcsapi_target_ip.conf
wifi config
uci set wireless.radio1.disabled=0
uci commit
wifi
sleep 20
#######################################
### END 5g wifi initialization part ###
#######################################



###########################################
### WIFI CONFIGURATION			###
### edit below this line on your taste  ###
###########################################
SSID="testssid"
WPAPASS="12345678900"
CHANNEL="36"
TXPOWER=15

WIFIDEV=`qcsapi_sockrpc get_primary_interface`
qcsapi_sockrpc get_primary_interface
qcsapi_sockrpc get_regulatory_region "$WIFIDEV"
qcsapi_sockrpc set_regulatory_region "$WIFIDEV" us
qcsapi_sockrpc get_scs_report "$WIFIDEV" all
qcsapi_sockrpc get_channel "$WIFIDEV"
qcsapi_sockrpc set_channel "$WIFIDEV" "$CHANNEL"
qcsapi_sockrpc set_bw "$WIFIDEV" 80
qcsapi_sockrpc get_tx_power "$WIFIDEV" "$CHANNEL"
qcsapi_sockrpc set_tx_power "$WIFIDEV" "$CHANNEL" "$TXPOWER"
qcsapi_sockrpc -u -q set_option "$WIFIDEV" 802_11h 1

qcsapi_sockrpc set_ssid "$WIFIDEV" "$SSID"
qcsapi_sockrpc set_beacon "$WIFIDEV" 11i  # WPA2 AES only 
qcsapi_sockrpc set_option "$WIFIDEV" SSID_broadcast 1
qcsapi_sockrpc set_WPA_authentication_mode "$WIFIDEV" PSKAuthentication
qcsapi_sockrpc set_WPA_encryption_modes "$WIFIDEV" AESEncryption
qcsapi_sockrpc set_passphrase "$WIFIDEV" 0 "$WPAPASS"


iperf3 -s -D

# tunning for faster cpu ondemand governor
echo "1" > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold
echo "30" > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor
# or directly using the performance governor
echo "performance" >  /sys/devices/system/cpu/cpufreq/policy0/scaling_governor
echo "performance" >  /sys/devices/system/cpu/cpufreq/policy1/scaling_governor



exit 0

Thanks for the quick answer! As I'm kind of new to the game I have a hard time following.
So I made a fresh install of the OpenWRT for the R7500 (v1), after that, I installed your sysupgrade .bin file by flashing it through "Flash new firmware image" under System/Backup / Flash Firmware. Maybe we could start from there. I noticed another thing: Under Network Settings ( DHCP and DNS for example ) all menus appear twice.

Thanks in advance for your answer!

Best

Update: So I did a fresh install (Stock firmware > your firmware) and 5Ghz is available now. The menus do still show up twice though.

Update II: This is how the 5G config site looks like for me. Nothing to edit there:

image

1 Like

There is a size limit for the firmware of Netgear R7500 v1. You cannot install an image larger than 22MB using either the original firmware or the TFTP method.