Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. @svyatoslav are you using my latest build? git clone https://github.com/NickAlilovic/build.git --branch v20250306
  3. Thanks for the reply @steeman, How can I see the documentation of the version I'm using? I'd prefer to keep using it before attempting to install a fresh armbian version.
  4. doesn't want to get ready, tell me where to go? E: Unable to correct problems, you have held broken packages. [💥] error! [ Failed to install host packages; make sure you have a sane sources.list. ] [💥] Exiting with error 43 [ at /home/toor/build/lib/functions/logging/traps.sh:1 exit_with_error() --> lib/functions/logging/traps.sh:1 install_host_side_packages() --> lib/functions/host/host-utils.sh:81 install_host_dependencies() --> lib/functions/host/prepare-host.sh:304 prepare_host_noninteractive() --> lib/functions/host/prepare-host.sh:92 do_with_logging() --> lib/functions/logging/section-logging.sh:81 prepare_host() --> lib/functions/host/prepare-host.sh:17 prepare_host_init() --> lib/functions/main/start-end.sh:64 main_default_start_build() --> lib/functions/main/start-end.sh:17 do_with_default_build() --> lib/functions/main/default-build.sh:41 cli_standard_build_run() --> lib/functions/cli/cli-build.sh:25 armbian_cli_run_command() --> lib/functions/cli/utils-cli.sh:136 cli_entrypoint() --> lib/functions/cli/entrypoint.sh:176 main() --> compile.sh:50 ] [💥] Cleaning up [ please wait for cleanups to finish ]
  5. The documentation is for the current version of armbian-config. You are using an older version. There was a rewrite of armbian-config between what you have and the current functionality.
  6. Hello, I'm using Armbian (22.08.0) for risc-v on a Mango-pi. I read in the documentation it is possible to install git with the command of this post-title, but instead, it opens the config menu (see screenshot). I've looked at the option to install git inside this menu (inside the software menu I saw other options except git), but have not found it. How can I do this? Any pointers are appreciated. Thanks.
  7. Today
  8. I'm having a problem installing a driver. Once compiled correctly, the system gives me an error. Note that I performed the same procedure with : RaspiOS on an arm64 board (RPi4B) with the same kernel version, and it worked. Debian 12 on a PC, and it worked. Armbian on an arm64 board (RPi4B) with the same kernel version, and it worked. Armbian on an armhf board (nanopineocore) with the same kernel version, and it worked. But does not work with Armbian Bookworm on a nanopineocore2 board: epsilonrt@nanopineocore2:~/src/tty0tty/module$ sudo modprobe tty0tty modprobe: ERROR: could not insert 'tty0tty': Exec format error epsilonrt@nanopineocore2:~/src/tty0tty/module$ modinfo tty0tty filename: /lib/modules/6.12.20-current-sunxi64/updates/dkms/tty0tty.ko license: GPL description: tty0tty null modem driver author: Luis Claudio Gamboa Lopes <lcgamboa@yahoo.com> depends: name: tty0tty vermagic: 6.12.20-current-sunxi64 SMP mod_unload aarch64 epsilonrt@nanopineocore2:~/src/tty0tty/module$ uname -a Linux nanopineocore2 6.12.20-current-sunxi64 #1 SMP Sat Mar 22 19:54:28 UTC 2025 aarch64 GNU/Linux The problem does not come from the driver which loads very well on all the systems mentioned at the beginning of the post, for example with Armbian Bookworm on an RPi 4B board: epsilonrt@r14:~/src/tty0tty/module$ sudo modprobe tty0tty epsilonrt@r14:~/src/tty0tty/module$ dmesg | tail [ 15.046221] bcmgenet fd580000.ethernet end0: Link is Up - 1Gbps/Full - flow control off [ 21.678333] Bluetooth: RFCOMM TTY layer initialized [ 21.678364] Bluetooth: RFCOMM socket layer initialized [ 21.678384] Bluetooth: RFCOMM ver 1.11 [ 84.092535] mempolicy: Request by 'ps' to set policy to 5 ignored [ 84.092553] mempolicy: Request by 'ps' to set policy to 3 ignored [ 261.550048] mempolicy: Request by 'ps' to set policy to 5 ignored [ 261.550065] mempolicy: Request by 'ps' to set policy to 3 ignored [ 643.744771] tty0tty: loading out-of-tree module taints kernel. [ 643.750941] tty0tty null modem driver v1.4 epsilonrt@r14:~/src/tty0tty/module$ ls /dev/tnt* /dev/tnt0 /dev/tnt1 /dev/tnt2 /dev/tnt3 /dev/tnt4 /dev/tnt5 /dev/tnt6 /dev/tnt7 Also, the same error occurs with another driver like v4l2loopback: epsilonrt@nanopineocore2:~/src/v4l2loopback$ sudo modprobe v4l2loopback modprobe: ERROR: could not insert 'v4l2loopback': Exec format error epsilonrt@nanopineocore2:~/src/v4l2loopback$ modinfo v4l2loopback filename: /lib/modules/6.12.20-current-sunxi64/updates/v4l2loopback.ko alias: char-major-10-255 license: GPL version: 0.14.0-25-g8d806ad author: Vasily Levin, IOhannes m zmoelnig <zmoelnig@iem.at>,Stefan Diewald,Anton Novikovet al. description: V4L2 loopback video device srcversion: FC835C7E0E75B1C90BC5391 depends: videodev name: v4l2loopback vermagic: 6.12.20-current-sunxi64 SMP mod_unload aarch64 parm: debug:debugging level (higher values == more verbose) (int) parm: max_buffers:how many buffers should be allocated [DEFAULT: 2] (int) parm: max_openers:how many users can open the loopback device [DEFAULT: 10] (int) parm: devices:how many devices should be created (int) parm: video_nr:video device numbers (-1=auto, 0=/dev/video0, etc.) (array of int) parm: card_label:card labels for each device (array of charp) parm: exclusive_caps:whether to announce OUTPUT/CAPTURE capabilities exclusively or not [DEFAULT: 0] (array of bool) parm: max_width:maximum allowed frame width [DEFAULT: 8192] (int) parm: max_height:maximum allowed frame height [DEFAULT: 8192] (int) epsilonrt@nanopineocore2:~/src/v4l2loopback$ uname -a Linux nanopineocore2 6.12.20-current-sunxi64 #1 SMP Sat Mar 22 19:54:28 UTC 2025 aarch64 GNU/Linux epsilonrt@nanopineocore2:~/src/v4l2loopback$ lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Armbian 25.2.3 bookworm Release: 12 Codename: bookworm You can find all the details at armbian/build#8153 For all my tests I use the images available for download on the Armbian site. It appears that the driver compliance checking system is corrupted on Armbian sunxi64. Could the team look into this issue ? Thanks.
  9. So.. this neat board has mainline kernel but with no video output and it has a mali panfrost GPU. My question to all you dev pros of the kodi tv boxes is... Is there anyone capable to fix video output on this wee board that has it on radxa 5.15 default debian kernel?
  10. no access all links to your images are not available
  11. Они видны, но не работают. root@x98h:~# lsusb Шина 005 Устройство 002: ID 8301:0089 Беспроводная клавиатура Hapurs HPBT05R 2.4 G Mini Wireless Touchpad Шина 005 Устройство 001: ID 1d6b:0001 Linux Foundation 1.1 корневой концентратор Шина 003 Устройство 001: ID 1d6b:0002 Linux Foundation 2.0 корневой концентратор Шина 004 Устройство 001: ID 1d6b:0001 Linux Foundation 1.1 корневой концентратор Шина 002 Устройство 001: ID 1d6b:0002 Linux Foundation 2.0 корневой концентратор Шина 006 Устройство 001: ID 1d6b:0001 Linux Foundation 1.1 корневой концентратор Шина 001 Устройство 003: ID 148f:7601 Ralink Technology, Corp. Беспроводной адаптер MT7601U Шина 001 Устройство 001: ID 1d6b:0002 Linux Foundation 2.0 корневой концентратор Шина 007 Устройство 001: ID 1d6b:0002 Linux Foundation 2.0 корневой концентратор Лучше всего работает: Armbian-unofficial_25.05.0-trunk_X98h_bookworm_edge_6.12.11_xfce_desktop., но нет Wi-Fi и звука. dmesg.txt
  12. Thank you very much. As usual I tried to get into the wrong car)) I will try
  13. There is a stripped-down firmware in the Armbian images. Update it using armbian-config. Maybe the USB-WI-FI will work. But keep in mind that the updated firmware will take about 1 GB of memory.
  14. I'm using Armbian with kernel 6.12 on a (CB2) device. When I connect my monitor via HDMI, the EDID is successfully read and it includes both 1920x1080 and 1280x800 as supported resolutions. However, only 1920x1080 appears in the available display modes. The 1280x800 mode is missing, even though it is clearly listed in the EDID.
  15. pithecanthrope, That DTS is specific for the raspberry pi lcd... not for the red pcb ili9486. Do you have that? You can name the DTS any filename, for example ~/ili9486/ili9486-35.dts cd ~/ili9486-35 sudo armbian-add-overlay ili9486-35.dts The command will also add it to armbianEnv.txt Make sure to not add any other overlays related to SPI It is very nice that the raspberry pi lcd doesn't need us to fabricate a custom cable, just plug it in the correct orientation. Are you using Linux 6.12?
  16. I have a box identical to the X98H. After installing the Armbian-unofficial_25.05.0-trunk_X98h_bookworm_edge_6.12.11_server.img.xz image compiled by Nike, the Ethernet port is not working. Here's the content returned by the dmesg command
  17. HI @kratz00. I'm indeed trying to get myself familiiarized with the build system and making pull requests for this and some other little nitpicky things that I think might help others. Hi @Nova, There is also the Helios64, also from Kobol: https://kobol.io/ There have been some issues with it though, related to the DFS function and the 2.5Gbe NIC hardware. I'm running mine for some years already, albeit still on Buster (from 2020 with kernel 5.9.13). Also I am not using the DFS function and set the CPU frequency (fixed governor either powersave or performance) explicitly before it starts backing up (it's my long term backup server). Most probably the newest armbian will run without major issues - except the 2.5Gbe NIC functionality as that was hardware related. Groetjes, PS I'm not affiliated with Kobol in any way whatsoever.
  18. Please give me a link to your image. I'm trying to make a micro computer for my child, so I'm puzzled by remaking the console, if he wants to watch cartoons he'll figure it out. This is useful, the kid is 6 years old and he only watches cartoons, both on TV and on the phone.
  19. Unfortunately, the USB adapter was not detected either, there is still no sound. this image used: Armbian-unofficial_25.05.0-trunk_Transpeed-8k618-t_bookworm_edge_6.12.11_xfce_desktop.img
  20. Take a look at Radxa Rock 5 ITX. You can definitely make a NAS out of one of them.
  21. @incbot just use a fresher image rather than a two years old one: https://github.com/armbian/community/releases/tag/25.5.0-trunk.444
  22. @svyatoslav there’s android firmware but the Linux driver is old. Your dmesg doesn’t show any wifi info because there’s no driver. Unless you know how modify kernel drivers I would forget about it and use a usb wifi adapter.
  23. Hi @djurny Great find, are you planing on upstreaming your changes? Not sure, but I guess all it would need is to update arm-mvebu-helios4-Update-Load-address.patch which can be found here: https://github.com/armbian/build/tree/main/patch/u-boot/legacy/u-boot-helios4/board_helios4
  24. I can't understand why no one in the world has thought of releasing another 64-bit ARM motherboard with 4 SATA ports or 6 SATA ports. And that way, we don't have to end up buying a Synology or something worse... I guess we're heading for extinction like dinosaurs.
  25. firepower https://github.com/NickAlilovic/build/releases/download/20250306/Armbian-unofficial_25.05.0-trunk_Vontar-h618_bookworm_edge_6.12.11_xfce_desktop.img.xz https://github.com/NickAlilovic/build/releases/download/20250306/Armbian-unofficial_25.05.0-trunk_Transpeed-8k618-t_bookworm_edge_6.12.11_xfce_desktop.img.xz this?
  26. E: Unable to correct problems, you have held broken packages. [💥] error! [ Failed to install host packages; make sure you have a sane sources.list. ] [💥] Cleaning up [ please wait for cleanups to finish ]
  27. There was ssv6x5x android drivers in the tanix and vontar firmware i upload. You could try them.
  1. Load more activity
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines