-
Posts
5458 -
Joined
-
Last visited
Reputation Activity
-
Werner got a reaction from snow in How do I display the nice SSH login info again?
Ah, I misunderstood. I thought does not appear at all anymore but the question was about manual call.
Has been answered properly already.
-
Werner reacted to Igor in Custom Build ot working completly
Vendor kernel 6.1.y with mesa-vpu extension https://github.com/armbian/os/blob/main/userpatches/targets-extensions.map#L58 (with patched Chromium) is the only way to come close to what you want.
Only this:
-
Werner got a reaction from uablrek in Running Armbian build on x86-64
Install code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } qemu-user-static package and retry
-
Werner got a reaction from laibsch in Orange Pi 5 Plus multiple "fdee0000.hdmirx-controller: hdmirx_wait_lock_and_get_timing HDMI pull out, return!" errors on boot
This should have been addressed: https://github.com/armbian/linux-rockchip/pull/373
May take a while until an updated kernel is available via apt. You can always build a up-to-date package by yourself using the build framework.
-
Werner got a reaction from laibsch in How to prepare official image NOT to prompt root password and initial user? Ethernet connection with DHCP but no HDM / mouse / keyboard.
https://docs.armbian.com/User-Guide_Autoconfig/
-
Werner reacted to laibsch in Manually adding new Mesa & Mali drivers to Armbian (Debain 6.12)
I cannot verify your claim that Ubuntu "reverted" to Gnome v44. Noble has v44 indeed. v46 is not anywhere in a Ubuntu release so my guess is you shot yourself in the foot with some random PPA or whatever repo out there.
https://launchpad.net/ubuntu/+source/meta-gnome3
There is no shortage of boards out in the wild, nobody would think that. What there is, is a shortage of people willing to fund development, be it users or companies. Big shout out to those who do and to our volunteer devs, thank you!
-
Werner reacted to laibsch in [Ubuntu 25.05 Plucky - Armbian-unofficial 25.05.0-trunk] BPi-M7 blank display, gnome version issue
No, Armbian has not become a total nightmare. But your posting all over the place, in several threads here and even Ubuntu ustream trackers with a bunch of unsubstantiated and obviously nonsensical claims IS absolutely a nightmare. PLEASE STOP!
You make bogus claims faster than anybody can look into them. What made you think this was related to postgres? What makes you think Ubuntu downgraded their Gnome in Noble? Slow down, take a deep breath and stop being all over the place.
-
Werner got a reaction from Randy Joshua Simorangkir in OPI 4A - Allwinner T527
No, this board isn't supported. However anyone from the community can step up and add support for it.
Found an attempt on Github:https://github.com/juanesf/build/pull/1
-
Werner got a reaction from Randy Joshua Simorangkir in OPI 4A - Allwinner T527
This is not an Armbian image. We do not support 3rd party images.
-
Werner got a reaction from AstromanGaming in RSB-4411
Detailed/full uart logs would probably be helpful
-
Werner got a reaction from bedna in Remote backup of SD card for an Orange Pi?
Maybe this helps? https://forum.armbian.com/topic/29427-shrink-backup-a-tool-for-backing-up-sbcs/
-
Werner got a reaction from laibsch in Remote backup of SD card for an Orange Pi?
Maybe this helps? https://forum.armbian.com/topic/29427-shrink-backup-a-tool-for-backing-up-sbcs/
-
Werner got a reaction from Emon_hasan in TTL to RS232 console adapter
Yes, DB9 won't work.
But if, as eselarm mentions, a proper chip is on board already a simple usb-a to usb-c or c-to-c cable should do.
Check dmesg when connection to see what pops up.
-
Werner got a reaction from Igor in Orange-Pi 3B, how to transfer from sd card to nvme
If nvme is correctly recognized code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } armbian-install should do.
-
Werner reacted to ag123 in NO_PUBKEY 93D6889F9F0E78D5 while using apt (e.g. apt update)
symptom:
> apt update ... Err:8 https://github.armbian.com/configng stable InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 93D6889F9F0E78D5 ... W: Failed to fetch https://github.armbian.com/configng/dists/stable/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 93D6889F9F0E78D5 observed in Armbian image for Orange pi zero 3 Armbian_community_25.8.0-trunk.90_Orangepizero3_bookworm_current_6.12.30_minimal.img build date May 28, 2025
fix:
- run this as root
> su - ^ login as root > wget -O - https://apt.armbian.com/armbian.key | gpg --dearmor -o /usr/share/keyrings/armbian.gpg
you should find a file /usr/share/keyrings/armbian.gpg about 2 KB in size
repeat apt update etc should have resolved the error
-
Werner reacted to SteeMan in Orange Pi 5 Max SD card booting issue, system normally starts from NVME SSD
that should be 1500000 (one more zero). Note a lot of uart connectors can't handle this high of a speed. There are many threads in the forums discussing specific ones that are able to reach that speed.
-
Werner reacted to eselarm in RPi5 Armbian_25.2.x upgrade: Unsupported initramfs version
This reminds me of old issue on rpi forum, back to Debian10 times more or less when RPL did not support initramfs and I have been using Btrfs for RPis since Buster (or for sure Bullseye) timeframe.
I loop mounted Armbian rolling rpi4 trixie image and ran it via systemd-nspawn -b -D <mountpoint>
Then it turns out what I thought: the installed firmware package includes the script same as on Raspberry Pi OS from RPL themselves to copy/rename standard Debian kernel+modules install patch to the FAT boot partition.
root@localhost:~# apt list | grep raspi raspi-config/trixie,trixie,now 20221214-0ubuntu1 all [installed] raspi-firmware/trixie,trixie,now 1:1.20250430-1 all [installed] raspi-gpio/trixie 0.20231127 arm64 raspi-utils/trixie,trixie 20250314-1 all root@localhost:~# dpkg -L raspi-firmware | grep z50 /etc/initramfs/post-update.d/z50-raspi-firmware /etc/kernel/postinst.d/z50-raspi-firmware /etc/kernel/postrm.d/z50-raspi-firmware And it is this part of z50-raspi-firmware
flavour="$(echo "$initrd_version" | rev | cut -f1 -d- | rev)" case $flavour in v6|v7|v7l|v8|2712) ;; *) echo "ERROR: Unsupported initramfs version ($initrd_version)" exit 0 ;; esac On 1 of my RPi4 I had also the standard Debian kernel 'linux-image-arm64' besides the RPi kernel 'linux-image-rpi-v8' and grub-efi. So when the bootFAT parttition is tagged 0xEF00 (ESP) I could run the image/SD-card unmodified in virt-manager selecting the vanilla Debian kernel in GRUB.
I have thought a lot about what to do with those hook scripts in /etc/initramfs, also created various own ones, for Raspberry Pi OS and Raspbian and Armbian. The latter as it is U-Boot (on Rockchip/Allwinner) but just recently I put EDK2-UEFI v1.1 in SPI-flash and that makes all the efforts void as I now use default grub to load Armbian (and Opensuse) on RK3588. For RPi (3, 4, 5) this won't work unless some intermediate efi binary loader is used like is done in Opensuse, for Fedora maybe as well, I don't know. Still this won't work for RPi5 (yet) as its RP1 chip is a bottleneck for upstream support (complex PCI-E DeviceTree handling, see patches efforts done by Suse people AFAIR).
With introduction of Bookworm, the RPi firmware can load standard names for initramfs for all RPi HW variants back till 2012. But still no way to select a specific kernel adhoc at boot time via serial console for example (like extlinux.conf for U-Boot). The U-Boot v.s. RPI-firmwarebootloader feels a bit like UNIX pathnames v.s. MS-DOS pathnames, e.g. "/tmp" v.s. "C:\TEMP" or "Image" v.s. "kernel8.img" or "uInitrd" v.s. "initramfs8".
Maybe the option is to patch z50-raspi-firmware, maybe remove it from the .deb package. But also it is just a warning, so who cares one could think.
Other option is to use the vanilla Debian variant of raspi-firmware
root@localhost:/etc/apt/sources.list.d# apt list -a raspi-firmware raspi-firmware/trixie,trixie,now 1:1.20250430-1 all [installed] raspi-firmware/testing 1.20240424+ds-6 all That older version has other script implementation (very different), also uses upstream_kernel=1 in config.txt, which selects other firmware DTB names for Pi3.
Now writing this, I think 'vendor' could be downstream RPL based, so new firmware package and 'current' and 'edge' could be upstream mainline. But that also would mean almost no RPi5 functionality as long as that RP1 I/O chip functionality is not upstreamed. I don't know what status is, latest I know is that the wired ethernet still does not work, workaround is to use a RJ45 USB2 dongle on the USB-C connector.
-
Werner reacted to djurny in Helios-64 Fails to boot since upgrading to Bookworm
Hi @Werner,
Not to pick nits, but 7 is the highest level (lowest priority) you can give a printk() statement. To make them appear however, the loglevel of the printk() needs to be smaller than the loglevel of the console, meaning the [console] loglevel needs to be 7+1:
loglevel= [KNL,EARLY] All Kernel Messages with a loglevel **smaller** than the console loglevel will be printed to the console. It can also be changed with klogd or other programs. The loglevels are defined as follows: Also, the following text also steers into the direction of using 8 instead of 7 to show all printk() messages:
To change the current console_loglevel simply write the desired level to ``/proc/sys/kernel/printk``. For example, to print all messages to the console:: # echo 8 > /proc/sys/kernel/printk (Taken from https://www.kernel.org/doc/Documentation/core-api/printk-basics.rst.)
Grt,
-
Werner got a reaction from Thewonderer in Available frequencies for RK3588 are wrong
Since you are on current you cannot expect a major bump until the next LTS kernel is released. current will receive security fixes only.
If you want something more recent you need to switch to edge kernels which follow non-LTS mainline kernel releases.
-
-
Werner reacted to anarsoul in EDID read issue on kernel 6.12 - missing 1280x800 mode (CB2)
This mode needs 80MHz pixel clock which is not in the table for clk-rk3568.c driver. You need a patch similar to https://lkml.org/lkml/2025/3/18/1337 to add this rate.
FWIW 1280x800@63.59Hz isn't a very common mode
-
Werner got a reaction from laibsch in Orange-Pi 3B, how to transfer from sd card to nvme
If nvme is correctly recognized code { font-family: Consolas,"courier new"; color: crimson; background-color: rgba(0, 0, 0, 0.2); padding: 2px; font-size: 105%; } armbian-install should do.
-
Werner got a reaction from laibsch in Linux 6.15 released
Between days and month. Depending on time, issues, regressions,...
Refrain from asking for ETA. Putting pressure on developers who give you something for free is abusive.
-
Werner got a reaction from luckylinux in Radxa Rock 2F - Initial Support available ?
This kernel does not come from radxa but from Rockchip themselves as BSP. However we put lots of work on top of that:https://github.com/armbian/linux-rockchip
This will basically be a thing until mainline catches up. Though there will be a few years to go in that matter.
-
Werner got a reaction from nnq1612 in Orange Pi 5 Max SD card booting issue, system normally starts from NVME SSD
Same answer as above. Without serial logs impossible to debug.
It leaves to mention that this board is not officially supported but configuration has been provided by a community effort. Board status is unknown to the core Armbian team.