RTL960x/README.md

50 lines
1.3 KiB
Markdown
Raw Normal View History

2021-02-17 08:31:52 +00:00
# Hacking_RTL9601C1
2021-02-17 09:04:04 +00:00
Hacking V2801F & TWCGPON657 to suite your ISP Fiber
# Issue
GPON market is a mess, plus explicit OMCI cause ONU Stick did not work
With my issue:
* V2801F build quality is bad, firmware is good, manage to have an internet connection
* TWCGPON657 build quality is good, firmware is bad, when GPON Password is set, stick hang and CPU usage become 100%
Since we dont have source code, try mix and match binary between V2801F and TWCGPON657
2021-02-26 06:32:30 +00:00
# Usage
* Please read [FLASH_GETSET_INFO.md](Docs/FLASH_GETSET_INFO.md) for how to configure, login, etc...
* Advance setting like duplicate ONT Info, read [FLASH_GETSET_DEV.md](Docs/FLASH_GETSET_DEV.md)
2021-02-17 09:04:04 +00:00
# Modify
You need a Linux PC/VM, Ubuntu as Operating System
## Prerequisite
You need these program installed:
* `tar` (extract tar package)
* `squashfs-tools` (extract/repack rootfs)
* `qemu-user-static` (run MIPS VM)
## Extract firmware
* Extract Firmware package in `tar` format, we need `rootfs` file
* Extract `rootfs` partition
```
unsquashfs rootfs
```
## Repack firmware
* Repack `rootfs`
```
mksquashfs squashfs-root rootfs.new -b 131072 -comp lzma
```
* Rename `rootfs`
```
mv rootfs rootfs.old
mv rootfs.new rootfs
```
2021-02-17 13:10:40 +00:00
* Update `md5sum`
```
md5sum fwu.sh rootfs uImage fwu_ver > md5.txt
```
* tar current folder
```
tar -cvf ../firmware.tar *
```