What's new

Firmware wrong sha

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

FROSTY

Occasional Visitor
Hi all been having problems with my rt-Ax88u firmware the sha key not matching what’s on the download site
 
Hi all been having problems with my rt-Ax88u firmware the sha key not matching what’s on the download site
Asus or Merlin firmware?
 
You are unzipping the file first and using sha-256?
 
Wow how green am I..
Found SHA256 Online choosing file hash then dragging file into it and still ???? What should I do to get the right output
 
Just got ihash from apple store which does sha256 and check for match with the supplied file and still don’t match
 
I use WinMD5 to verify the Asuswrt.w file and the Asuswrt-Merlin.zip file. Why they do it differently is a mystery to me.

OE
 
Thanks guys but only got MacBook and I’ve tried all the apps and don’t seem to match
Also I’ve been having issues with a large file on jffs2 shows up different issues depending which firmware I upload from early ASUS to late merlin I don’t know anything about pro
 
Download the zip file, unpack it, and run this on the command line of your Mac:

Code:
➜ shasum -a 256 RT-AX88U_386.4_0_cferom_ubi.w
10da310c6ba586213cc15816e55adb3d3fae282aaa3ae02e4e4d20394e9329de  RT-AX88U_386.4_0_cferom_ubi.w

That checksum matches the one mentioned in the sha256sum.sha256 file.
 
Thanks guys but only got MacBook and I’ve tried all the apps and don’t seem to match
Also I’ve been having issues with a large file on jffs2 shows up different issues depending which firmware I upload from early ASUS to late merlin I don’t know anything about pro
In Terminal on the Mac, change the directory to where you downloaded the file. Then copy and paste the following:
Code:
echo "10da310c6ba586213cc15816e55adb3d3fae282aaa3ae02e4e4d20394e9329de  RT-AX88U_386.4_0_cferom_ubi.w" | shasum -a 256 --check

It matches for me:
Code:
RT-AX88U_386.4_0_cferom_ubi.w: OK
 
In Terminal on the Mac, change the directory to where you downloaded the file. Then copy and paste the following:
Code:
echo "10da310c6ba586213cc15816e55adb3d3fae282aaa3ae02e4e4d20394e9329de  RT-AX88U_386.4_0_cferom_ubi.w" | shasum -a 256 --check
I did not know about "--check". Thanks for teaching me!

I think the better command would then be:
Code:
➜ cat sha256sum.sha256 | shasum -a 256 --check
RT-AX88U_386.4_0_cferom_ubi.w: OK
 
Or shorter:

Code:
➜ shasum -c sha256sum.sha256 -a 256
RT-AC86U_386.5_beta1_cferom_ubi.w: OK
 

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top