-
Posts
5164 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Everything posted by Werner
-
Bleeding edge kernel, unsupported userspace and expect everything to work flawless....
-
Switching off LED lights on TV Box Lemfo HK1 Rbox
Werner replied to stev77's topic in Allwinner CPU Boxes
Since you did not state what kind of OS you are using on this thing I suggest to open it up and desolder/cut out the annoying LEDs. -
yes
-
Raspberry Pi4B USB Ethernet not detected at boot
Werner replied to Sid Boyce's topic in Raspberry Pi
moved -
Just pinging @amazingfate and @Efe Çetin Maybe they want to join the 6.1 journey. If not, apologies
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
Kernel - Internal Error Oops: 0000000096000004 [#1] PREEMPT SMP
Werner replied to Abdul Badalambadad's topic in Rockchip
Tried doing a comparison? -
Hi, no official plans as I am aware of. However anyone can step up and try to adopt the newer rk bsp into the build framework.
- 47 replies
-
- Orange Pi 5
- Orange Pi 5B
-
(and 1 more)
Tagged with:
-
Kernel - Internal Error Oops: 0000000096000004 [#1] PREEMPT SMP
Werner replied to Abdul Badalambadad's topic in Rockchip
Providing logs with armbianmonitor -u helps with troubleshooting and significantly raises chances that issue gets addressed. -
Raspberry Pi4 apt-get update problems
Werner replied to Sid Boyce's topic in Software, Applications, Userspace
Double-check that you can reach that IP address through your internet connection. -
For now using 5.10 vendor bsp is the way to go. 6.8 is - as the name implies - bleeding edge and problems are to be expected. This will most likely be addressed upstream sooner or later. MAY take a while since there seems to be a general shortage in 32G boards due to the lack of available memory chips.
-
no fou kernel module on orange pi zero image
Werner replied to 0ka's topic in Software, Applications, Userspace
Probably because nobody ever used it and therefore it never has been activated. Feel free to provide a PR to fix this. -
OPi 5 + Images / Server images missing from download page
Werner replied to Thewonderer's topic in Orange Pi 5 Plus
You can always build an image combining the kernel and userspace flavor of your choice. https://github.com/armbian/build -
OPi 5 + Images / Server images missing from download page
Werner replied to Thewonderer's topic in Orange Pi 5 Plus
You get is what you pay for. With low price there is no money left for software development. I don't think its worth the wait. There won't be significant improvements anymore in this version but that is up to you. You can always check the diff between the RCs and whole versions:https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/diff/?id=v6.8-rc4&id2=v6.8-rc3&dt=2 -
OPi 5 + Images / Server images missing from download page
Werner replied to Thewonderer's topic in Orange Pi 5 Plus
Depends on the branch you are on. Mainly used for RK3588 atm are legacy and edge. Latter is following mainline which will probably receive another bump once 6.8 has released and then maybe, if there is enough interesting code, bumped further to 6.9-rc. Legacy is based on vendor bsp and occasionally people try to fix the flaws within this messy code which is then adopted and pushed via apt. Switching branches is possible via armbian-config. Also switching to beta is possible. -
This command is provided by Ubuntu userspace and has nothing to do with Armbian. Userspace upgrades are neither tested nor supported.
-
OrangePi 5 Plus - rtc hym8563 - irq issue
Werner replied to Marco Schirrmeister's topic in Orange Pi 5 Plus
You're doing great Draft PR usually means it is WIP or the author implies it shall not be merged (yet). So once you think you are done with your adjustments mark it ready for review. It is still possible to do adjustments after that. -
OPi 5 + Images / Server images missing from download page
Werner replied to Thewonderer's topic in Orange Pi 5 Plus
Maybe they are still being assembled. Release is planned. Check for server images here and then do apt update/upgrade once its released: https://fi.mirror.armbian.de/archive/orangepi5-plus/archive/ -
Error executing partprobe during build
Werner replied to Andrea's topic in Armbian Project Administration
Please share full log. -
How to enable extra kernel modules when compiling from source?
Werner replied to VioletGiraffe's topic in Beginners
Just curious. Where did you read something about "run make"? -
moved to staging.
-
How to enable extra kernel modules when compiling from source?
Werner replied to VioletGiraffe's topic in Beginners
There are actual two ways. You can use code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } ./compile.sh KERNEL_CONFIGURE=yes which will continue to assemble an image with the modified config file which is more user friendly. On the other hand there is code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } ./compile.sh kernel-config which will export the modified kernel config into code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } output/ folder and stops there which is more developer friendly. If you chose latter route you need to move the exported config to userpatches or overwrite the one in code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } config/kernel/. Once you done that simply execute code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } ./compile.sh and the modified config will be used.