

Ravaz
-
Content Count
15 -
Joined
-
Last visited
Everything posted by Ravaz
-
Seems related to this: https://forum.armbian.com/topic/12542-rtl8723bs-in-ap-mode-gets-kernel-errors/?tab=comments#comment-92905 Did you manage to find a fix for this issue?
-
I tried to create a patch for the tinker board following Igor example (see patch below), but the problem persists. Problem must be elsewhere. diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c index f819abb75..738dcb2ae 100644 --- a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c +++ b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c @@ -2414,6 +2414,7 @@ void rtw_cfg80211_indicate_sta_assoc(struct adapter *padapter, u8 *pmgmt_frame, ie_offset = _REASOCREQ_IE_OFFSET_; sinfo.filled = 0; +
-
Hello, I'm trying to show a startup logo a Tinker Board without success. I tried to add a parameter logo=/boot/boot.bmp to /boot/armbianEnv.txt but it doesn't work. Is the boot logo implemented on the Tinker Board? Does it require a patch? Thanks for your feedback.
-
Yes, this seems to be the missing patch. I will test it upon my return from holidays in one week time. Thanks a lot for the lightning fast feedback!
-
Hello, I'm unable to make the RTL8723BS chip on my Tinker Board to work on AP mode with the 5.4 kernel (same configuration works on legacy kernel). When I try to connect I get this error on dmesg: RTL8723BS: ap recv deauth reason code(3) sta:40:4e:36:cf:8a:18 On the console I also get a bunch of kernel errors similar to this: Message from syslogd@localhost at Dec 27 14:26:11 ... kernel:[ 799.239910] ff60: bf0377a4 dd8057e8 dd07ffac dd07ff78 c014a17c bf0377b0 de2d9128 de2d9128 Is this a known problem? Thanks
-
Hello, is it possible to install WiringPi on Rock Pi 4? I tried to install WiringX using the instructions on https://github.com/wiringX/wiringX , but after installing it the command "gpio" is not present. Any hint on how to get "gpio" command on Rock Pi 4? Thanks
-
Hello, ttyS2 is used for console output by default. In my application I need this port for custom communication. Is there any way to disable the console on it? Thanks
-
Wireless connection using command line instead of graphical tool
Ravaz replied to AVP's topic in Rockchip 3288 & 3328
Hello, could you please share your configuration files (interfaces and wpa_suplicant.conf) as an example on how to achieve WiFi connection using the wpa_supplicant method? Thanks. -
USB device hibernates can't be exit (g_ether)
Ravaz replied to Ravaz's topic in Rockchip 3288 & 3328
I recompiled the full image with default and next kernel, but still no luck. I also modified the device tree to force USB to peripheral. (dr_mode="peripheral"): usb@ff580000 { compatible = "rockchip,rk3288-usb", "rockchip,rk3066-usb", "snps,dwc2"; reg = <0x0 0xff580000 0x0 0x40000>; interrupts = <0x0 0x17 0x4>; clocks = <0x7 0x1c1>; clock-names = "otg"; dr_mode = "peripheral"; g-np-tx-fifo-size = <0x10>; g-rx-fifo-size = <0x118>; g-tx-fifo-size = <0x100 0x80 0x80 0x40 0x20 0x10>; g-use-dma; phys = <0x50>; phy-names = -
USB device hibernates can't be exit (g_ether)
Ravaz replied to Ravaz's topic in Rockchip 3288 & 3328
Hello Tony, any update on this topic? -
USB device hibernates can't be exit (g_ether)
Ravaz replied to Ravaz's topic in Rockchip 3288 & 3328
Yes I'm able to compile it myself, I already did it to add few drivers (g_ether and RTC PCF2127) and to create an image using btrfs file system. Thanks a lot. -
USB device hibernates can't be exit (g_ether)
Ravaz replied to Ravaz's topic in Rockchip 3288 & 3328
When I stat the board without the USB cable connected I get this error on dmesg (running on kernel 4.4.161-rockchip): [ 1.016700] dwc2 ff580000.usb: dwc2_core_reset() HANG! Soft Reset GRSTCTL=80000001 [ 1.127654] dwc2 ff580000.usb: dwc2_wait_for_mode: Couldn't set device mode Googling this message brought me to those bugs: https://www.spinics.net/lists/arm-kernel/msg564614.html Any patch to solve this issue? -
Hello, I'm enabling g_ether driver on tinker board. The driver works and I'm able to emulate an Ethernet adapter on my PC when I connect it to the tinker micro USB port. This only works if the micro USB connection exists before powering ON the board. If I connect it while the device is already running nothing happens. This behavior may be related to the following kernel path: https://patchwork.kernel.org/patch/10535905/ Is there any parameter I can add to avoid the USB from going to hibernate state? Or would it be possible to add the mentioned patch to armbian bui
-
Did find out how to do it?