Vijay Gill
Members-
Posts
11 -
Joined
-
Last visited
-
Hi @g2t, thanks for your reply. Stopped fan is as good as disconnected one, in my opinion. Also 0-5% CPU is idle for me. My CPU does not do much most of the time for now. (I am planning to migrate my home assistant and about 15 more docker containers from my existing raspberry pi based NAS to this one). So, I take it your system is 50-60°C when idle. It seems I will have to change the heatsink to a better one. I took mine off today and I suspect the blue "chewing-gum" they put in there was not good enough. I do not have a thermal pad thick enough for replacement as the gap between the chip and heatsink seems to be be a bit larger. I put another one I had (much smaller than the original) but better contact and I see the same temperatures. So I have a feeling that I will see better results with a larger cooler and better contact. I am planning to pick up this one - https://ie.rs-online.com/web/p/heatsinks/5040772
-
@g2t - thanks for sharing. Just curious what temperatures do you see with and without fan? I have this NAS running in the metallic case they sell on aliexpress. I see 68-70 °C even when CPU is idle. I am planning to change the heatsink but I thought of asking here first.
-
Hi, I developed this app just while having a look at django + angular -> https://github.com/vijaygill/wg-ui-plus I thought of sharing it with open-source communiity which has given me a lot! It allows me to have finer control over what a given VPN client can access (using IP Tables rules - managed by the code itself) I hope somebody finds it useful. It is comes as docker image (published on every push to dev / master) so updates are quite frequent for now due to tweaks / fixes. I developed it on an Orange Pi 5+ running on Armbian . The LIVE instance is running on a Raspberry Pi. Thanks V
-
Trying to test edge image on Orange Pi 5+. Board not booting.
Vijay Gill replied to Vijay Gill's topic in Orange Pi 5 Plus
Just posting here to close this ticket. Life happened and I could not work on this board since I posted my messages above. The compiled edge boots fine and there are no issues. Thanks to armbian team for all the hard work they put in. -
OrangePi 5 Plus - rtc hym8563 - irq issue
Vijay Gill replied to Marco Schirrmeister's topic in Orange Pi 5 Plus
@Marco Schirrmeister I did the PowerOff one too after I posted my message above. I can confirm that it works too. Thanks again! -
OrangePi 5 Plus - rtc hym8563 - irq issue
Vijay Gill replied to Marco Schirrmeister's topic in Orange Pi 5 Plus
@Marco Schirrmeister Thank you for your search and pointing towards the fix. I applied the same fix to 6.8.0-rc1-edge kernel and I noticed the same result! From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: John Doe <john.doe@somewhere.on.planet> Date: Sun, 11 Feb 2024 02:19:42 +0000 Subject: Patching kernel rockchip-rk3588 files arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts to fix hym8563-int issue. Signed-off-by: John Doe <john.doe@somewhere.on.planet> --- arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts index 88bfce623..844992180 100644 --- a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts +++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dts @@ -462,11 +462,11 @@ &pcie3x4 { }; &pinctrl { hym8563 { hym8563_int: hym8563-int { - rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_none>; + rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_up>; }; }; leds { blue_led_pin: blue-led { -- Created with Armbian build tools https://github.com/armbian/build -
@opetany My latest Armbian builds (and even downloaded ones) were not booting. Have a look at the solution I posted in this link Issue on github. Edit "/boot/armbianEnv.txt" (actual path may vary where you mount your sd-card / emmc module). Ensure the entry for fdtfile looks like following: fdtfile=rockchip/rk3399-rock-4c-plus.dtb
-
Trying to test edge image on Orange Pi 5+. Board not booting.
Vijay Gill replied to Vijay Gill's topic in Orange Pi 5 Plus
@Spooky @Werner Thanks! I will try that. -
Hi, I was just trying to test locally build image with edge kernel (Armbian_23.11.0-trunk_Orangepi5-plus_bookworm_edge_6.6.0-rc1.img) by flashing it on SD card and then trying to boot off it in my Orange Pi 5+. The board just sits there with the LED blinking and that's it. The legacy kernel image (Armbian_23.11.0-trunk_Orangepi5-plus_bookworm_legacy_5.10.160.img) boots fine. Do I have to carry out some extra step(s) to test the edge kernel? It's not a show-stopper for me as I have legacy image booting of EMMC nicely (and I am running jellyfin in docker happily there). It's just I thought I might test out some bleeding-edge stuff. Thanks in advance.