

SteeMan
Moderators-
Posts
1840 -
Joined
-
Last visited
Other groups
Contributor/Maintainer
Recent Profile Visitors
13843 profile views
-
Android TV Stick (iK316-H16430)
SteeMan replied to Muhammad Hanis Irfan Mohd Zaid's topic in Allwinner CPU Boxes
Armbian doesn't support TV Boxes. Read the following to understand the status of Armbian and TV Boxes: -
Wlan0 stopped showing up on Beelink GT1 Ultimate
SteeMan replied to moonlightzzz's topic in Amlogic CPU Boxes
Since this issue is well over a year old, I'm not sure where you stand with this. Are you still looking to get a fix? If so, answering all of the questions asked would be helpful. When you say "broke again" what do you mean by broke? Apparently the box is running and you can update it as you continue to update it per the message above saying you have upgraded to 6.12.32. Have you tried a fresh image installed on a new SD card to see if that works (vs. your upgraded system)? -
Building Armbian Distribution with Kernel 6.10 for Orange Pi 5 Pro
SteeMan replied to Sergey Dulimov's topic in Rockchip
Technically a DTS is specific to a kernel version. As changes happen to the kernel apis, those need to be reflected in the DTS's. So they DTB and kernel image are always built and shipped together. Now in practice changes that impact the DTS aren't common, so you can usually use DTS's accross kernel versions. However in this case, I'm assuming that when you refer to 6.1 that is a vendor kernel, and 6.10 or greater would be mainline kernel. Now these are two very different code bases. A vendor kernel is whatever the board/cpu vendor hacked together to get a kernel running on their hardware. Often these are more android kernel based. When features finally get rolled into mainline, their implementation is often completely different. Thus one can't share a DTS between a vendor kernel and a mainline kernel. But often you can use the vendor DTS to gather information about what needs to be implemented in the mainline DTS. -
Tanix TX3 mini unable to boot from Memory card
SteeMan replied to tasknodes's topic in Amlogic CPU Boxes
What build of armbian are you using? Please provide the exact steps you are having problems with, your description of the problem is not clear. -
rock pi 4 plus v1.73 It's not booting, help!
SteeMan replied to Nickolas M. Rebouças's topic in Rockchip
Moved to Community supported forum as this isn't a standard support board. -
Yes exactly
-
Help wanted to test a new OpenVFD alternative
SteeMan replied to Jean-Francois Lessard's topic in Amlogic meson
@KrzyPacu The Amlogic TV Box builds use extlinux.conf. So you should add your overlay info in that file (/boot/extlinux/extlinux.conf). I believe the syntax for extlinux is: OVERLAYS /dtb/amlogic/overlay/... (I'd recommend placing it just below the FDT line) (Note: I've never tried to load an overlay through extlinux, but have been intending to try it some day. Let us know how it goes) -
How install Armbian to tvbox Ugoos SK1 ( chip S928X-K )
SteeMan replied to Nguyễn Tất Hùng's topic in Amlogic CPU Boxes
@Nguyễn Tất Hùng If you want to use Armbian, you should start here: https://www.armbian.com/amlogic-s9xx-tv-box/ And specifically look at the link to the Status of TV Boxes on Armbian information. -
TV boxes are Community supported. That means they are not supported by Armbian. It is up to community members like you to figure these things out and submit them back to the community through your contributions.
-
I need help installing armbian on my s905y5 processor
SteeMan replied to MR.AK's topic in Amlogic CPU Boxes
I'm not aware of any support by mainline linux for this processor. Maybe in a few years, but in general, Amlogic doesn't work with mainline linux to get their cpu's supported, so there is unlikely to ever be any support outside android for this box. -
Look at your board config file: config/boards/orangepi5b.csc In there you will find the board family, which in your case is: BOARDFAMILY="rockchip-rk3588" Then look at the corresponding board family config file: config/sources/families/rockchip-rk3588.conf There you will find a section for each branch (i.e vendor, current, edge) that will specify which kernel source is used: For BRANCH=vendor that would currently be: KERNELSOURCE='https://github.com/armbian/linux-rockchip.git' KERNELBRANCH='branch:rk-6.1-rkr5.1' KERNELPATCHDIR='rk35xx-vendor-6.1'