Trouble
Self-compiled kernel doesn't have network connectivity
12
7709
|
[Trouble]
Self-compiled kernel doesn't have network connectivity
[Copy link]
|
|
+1
I need uinput support to get that touchscreen working. The official images I tried do not support uinput so I have to compile the kernel on my own. |
|
|
|
|
|
|
|
Meets the same problem
self-compiled kernel packet-loss heavily, 3rd kernel work fine (from http://pan.baidu.com/s/1eQd452M).
different of kernel output:
## self-compiled
# dmesg|grep gmac
[ 1.603406] [gmac]: sun6i_gmac platform driver registration completed
[ 5.501569] sunxi_gmac: probed
[ 5.510025] eth0: PHY ID 001cc915 at 0 IRQ 0 (sunxi_gmac-0:00) active
[ 5.521469] eth0: PHY ID 001cc915 at 1 IRQ 0 (sunxi_gmac-0:01)
[ 9.521121] PHY: sunxi_gmac-0:00 - Link is Up - 1000/Full
## 3rd kernel
# dmesg|grep gmac
[ 1.555787] [sunxi_gmac]: gmac_used is 1
[ 1.562949] gmac_para gpio count is 18
[ 1.567996] [gmac]: SUNXI_GMAC platform driver registration completed
[ 6.041293] sunxi_gmac: probed
[ 6.049765] eth0: PHY ID 001cc915 at 0 IRQ 0 (sunxi_gmac-0:00) active
[ 6.061059] eth0: PHY ID 001cc915 at 1 IRQ 0 (sunxi_gmac-0:01)
[ 12.061598] PHY: sunxi_gmac-0:00 - Link is Up - 1000/Full
I checked the kernel driver source, the above print message is from drivers/net/ethernet/allwinner/gmac/gmac_plat.c |
|
|
|
|
|
|