wiki/en/network-perversions.md

48 lines
889 B
Markdown

# OpenIPC Wiki
[Table of Content](../README.md)
A collection of practical networking perversions
------------------------------------------------
### XiongMai, HI3518EV100
On some cameras it's required to do the U-boot network configuration to get it to work in Linux
```
For U-boot network
setenv phyaddru 1
setenv phyaddrd 2
setenv mdio_intf rmii
saveenv
For Linux network
setenv extras 'hieth.phyaddru=1 hieth.phyaddrd=2'; saveenv
```
### CamHi/HiChip/Xin, HI3518EV200
```
For U-boot network
setenv phyaddru 0
setenv phyaddrd 1
saveenv
```
### HiWatch, HI3518CV100
```
For U-boot network
setenv phyaddru 3
saveenv
For Linux network
setenv extras 'hieth.phyaddru=3 hieth.mdioifu=0'
saveenv
```
### Harex (5013A-CF/5020A-FF), HI3516CV100
```
For U-boot network
setenv extras 'hieth.phyaddru=1 hieth.mdioifu=0'
saveenv
```