Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. @Manuel Carvajal Sorry I didn't read that you were using the 6.8 kernel. With the mainline kernel not everything works yet. With the Rockchip kernel (5.10.x and 6.1) it will work.
  3. Today
  4. I'm just not aware of this topic (satellite TV). @Igor @jock The changes in the published patches seem insignificant. Does it make sense to add them to the build system?
  5. @royk Hello Edit the file back to: verbosity=1 bootlogo=false console=both overlay_prefix=rockchip-rk3588 fdtfile=rockchip/rk3588-orangepi-5-plus.dtb rootdev=UUID=2c94c41f-b026-4717-82a6-3c0d968e559e rootfstype=ext4 overlays=sata1 sata2 user_overlays=orangepi-5-plus-pwmfan usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u,0x0bc2:0xab45:u,0x0bc2:0xab44:u #overlays=pwm0-m0 pwm0-m1 pwm0-m2 pwm1-m0 pwm1-m1 pwm1-m2 sata1 sata2 And also I attach a picture of how the fan is connected. Rebooted the system without showing any change 🥲 Thanks for your help
  6. Yes it was to support TBS satellite tuners, surprised?
  7. Did I understand correctly? The ultimate goal of this work was to support TBS in the kernel?
  8. This doesn't seem to have anything to do with Armbian. It might be better to post your question somewhere else.
  9. After trying to update using an SD card, my box powers on but does not send anything to display. I have previously tried to flash using USB 2 cable with the USB burning tool but I get a "Romcode/Initialize DDR/Read initailize status/USB Control setup error" message at 2%. I have tried 3 different files to the same effect, hence why I used SD cars and I am unable to fix the box using the USB tool. I need a boot image so I can try to fix it via SD card but I cannot find one anywhere. Please does anyone have a boot image I can use or can point out where I can find one or a way of fixing this by SD image?
  10. as an experienced TvBox GUI, for the sake of your sanity: keep out of TVbox! Banana Pi will launch BPI-M5 Pro with Rockchip RK3576 it will be an great Start point.....
  11. Please change the Topic name to add Supernote Nomad (A6X2)
  12. Update for current kernels (running linux 6.6.31 now): device and mixer_device need to change: audio_output { type "alsa" name "BananaPi BuiltIn" device "hw:1,0" mixer_type "hardware" mixer_device "hw:1" mixer_control "Power Amplifier" } Or to (hopefully) protect from future renumberings: audio_output { type "alsa" name "BananaPi BuiltIn" device "hw:CARD=sun4icodec,DEV=0" mixer_type "hardware" mixer_device "hw:sun4icodec" mixer_control "Power Amplifier" } See here for explanation of the device names to use in mpd with alsa: https://github.com/MusicPlayerDaemon/MPD/issues/374#issuecomment-432663715
  13. Trying vanilla bookworm from trunk on nanopi-r5c, changing sshd port seems to work aless@CORBINO ~ % ssh root@192.168.1.101 -p 61022 root@192.168.1.101's password: X11 forwarding request failed on channel 0 _ _ ____ _ ____ ____ ____ | \ | | _ \(_) | _ \| ___| / ___| | \| | |_) | | | |_) |___ \| | | |\ | __/| | | _ < ___) | |___ |_| \_|_| |_| |_| \_\____/ \____| Welcome to Armbian-unofficial 24.8.0-trunk Bookworm with Linux 6.6.34-current-rockchip64 No end-user support: built from trunk System load: 15% Up time: 4 min Memory usage: 5% of 3.65G IP: 192.168.1.101 CPU temp: 41°C Usage of /: 4% of 58G RX today: n/a [ General system configuration (beta): armbian-config ] Last login: Sun Jun 16 17:03:59 2024 from 192.168.1.116 nappio:~:# systemctl status ssh ● ssh.service - OpenBSD Secure Shell server Loaded: loaded (/lib/systemd/system/ssh.service; enabled; preset: enabled) Active: active (running) since Sun 2024-06-16 17:05:26 CEST; 30s ago Docs: man:sshd(8) man:sshd_config(5) Process: 3174 ExecStartPre=/usr/sbin/sshd -t (code=exited, status=0/SUCCESS) Main PID: 3175 (sshd) Tasks: 1 (limit: 4297) Memory: 3.2M CPU: 567ms CGroup: /system.slice/ssh.service └─3175 "sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups" Jun 16 17:05:26 nappio systemd[1]: Starting ssh.service - OpenBSD Secure Shell server... Jun 16 17:05:26 nappio sshd[3175]: Server listening on 0.0.0.0 port 61022. Jun 16 17:05:26 nappio sshd[3175]: Server listening on :: port 61022. Jun 16 17:05:26 nappio systemd[1]: Started ssh.service - OpenBSD Secure Shell server. Jun 16 17:05:42 nappio sshd[3178]: Accepted password for root from 192.168.1.116 port 51699 ssh2 Jun 16 17:05:42 nappio sshd[3178]: pam_unix(sshd:session): session opened for user root(uid=0) by (uid=0) Jun 16 17:05:43 nappio sshd[3178]: pam_env(sshd:session): deprecated reading of user environment enabled nappio:~:# /etc/ssh/sshd_config: # This is the sshd server system-wide configuration file. See # sshd_config(5) for more information. # This sshd was compiled with PATH=/usr/local/bin:/usr/bin:/bin:/usr/games # The strategy used for options in the default sshd_config shipped with # OpenSSH is to specify options with their default value where # possible, but leave them commented. Uncommented options override the # default value. Include /etc/ssh/sshd_config.d/*.conf Port 61022 #AddressFamily any #ListenAddress 0.0.0.0 #ListenAddress ::
  14. First of all thanks to have helped me on that matter. I found out what the issue was. When switching some option to M, some code had to be patched as it sounds like it was not expecting to become module or calling a module. The general root cause is that some C code is missing instruction like "MODULE_IMPORT_NS(DMA_BUF);", to use module symbols of another module or like "EXPORT_SYMBOL_GPL(dma_contiguous_default_area);" to make some symbols available to other modules. After making the whole "Media support" branch as a module, I had to make the attached patchs and apply them to my linux kernel 6.1 V24.05 by copying them in the directory build/userpatches/kernel/rk35xx-vendor-6.1 After doing that all went fine, I got the new Armbian Kernel built, and was able to compile the tbs drivers against it by following instruction there https://github.com/tbsdtv/linux_media/wiki All drivers working fine with tvheadend and using Kodi as a viewer (with hardware acceleration) At the end, I am impressed that it worked that well, thanks to Armbian to make the building of a kernel so easy. cma.patch contiguous.patch f_uvc.patch
  15. Description Rename audios like other rk3588 boards. Jira reference number [AR-9999] Documentation summary for feature / change Please delete this section if entry to main documentation is not needed. If documentation entry is predicted, please provide key elements for further implementation into main documentation and set label to "Needs Documentation". You are welcome to open a PR to documentation or you can leave following information for technical writer: [ ] short description (copy / paste of PR title) [ ] summary (description relevant for end users) [ ] example of usage (how to see this in function) How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [ ] Test A [ ] Test B Checklist: Please delete options that are not relevant. [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  16. Hi, Armbian by itself does not accept new boards without funding/agreement. However anybody can contribute code via pull request and add community support for it. https://docs.armbian.com/Process_Contribute/
  17. Description Add support for rk3399 based SBC Leez P710 How Has This Been Tested? Build noble desktop img with command: ./compile.sh build BOARD=leez-rk3399 BRANCH=edge BUILD_DESKTOP=yes BUILD_MINIMAL=no DESKTOP_APPGROUPS_SELECTED='browsers chat desktop_tools editors email internet multimedia office programming remote_desktop' DESKTOP_ENVIRONMENT=gnome DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base DOWNLOAD_MIRROR=bfsu EXPERT=yes EXTRAWIFI=no KERNEL_CONFIGURE=no PREFER_DOCKER=no RELEASE=noble Write the output img to tf card, inserd the card into the board, power up the board, the board can run into noble desktop. Checklist: [ ✓] My code follows the style guidelines of this project [✓] ] I have performed a self-review of my own code [ ✓]] I have commented my code, particularly in hard-to-understand areas [ ✓]] My changes generate no new warnings [ ✓]] Any dependent changes have been merged and published in downstream modules View the full article
  18. Hello is it possible to add support for the Rockchip rk3066 boards like the Marsboard and the mk808b ?? Thanks
  19. @Manuel Carvajal Perhaps the overlays are interfering, you could try to remove all pwm overlays from ArmbianEnv.txt. How did you connect the fan? If you connected it correctly it should by default go on when it reaches 50 degrees celsius. If you use the overlay from here you could also change the temperature: https://forum.armbian.com/topic/29253-temperature-and-fan-control-on-opi5/?do=findComment&comment=170456
  20. Hello, first post here. I have recently bought an Orange Pi Zero 3 4gb (its my first approach to any IoT so im quite noob), and i cannot make it work using armbian. Ive read a lot of users having troubels regarding the 4gb one, but I couldnt even make it reboot by following the "chinese" github. Generally, it boots the first time fine, but from then it has errors. I was wondering if you could please help me. Ive tried different armbian versions but nothing seems to work. Thanks.
  21. I've finally managed to boot from btrfs in uboot 2024.01. The problem was not a new bug (there was only a few small btrfs related changes since previously used uboot 2022.10), but some old limitations/bugs uncovered by uboot's switch from distroboot to bootflow. One bug has already been fixed in 2024.04 and another (out of bounds write) is not fixed yet. I have sent PR to armbian and will try to push it uboot upstream (ohhh, good ol maillists)
  22. Description Fix boot from btrfs fs in uboot 2024.01/2024.04 How Has This Been Tested? [x] Compile image and boot from (zstd-compressed) btrfs sole rootfs/bootfs partition Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code View the full article
  23. I would love to. I just want to get it working in any regard, as at the moment it serves as nothing but a very expensive drink coaster.. haha Apparently this board has the option to boot from SD card, and I have attempted to boot both Linux and Android variants (for this chipset, but not specific device) from the card without any luck.. I feel that maybe the device isn't defaulting to the boot from SD option though, as it is still seeing some type of software back-end. Do you happen to have any suggestions? Unfortunately at the moment I do not have access to an oscilloscope, but I will try to get a hold of one later in the week I have absolutely no idea how to do this, but I'm more than willing to try (and will certainly share it) I appreciate your response and guidance thanks @Hqnicolas
  24. I think this would make a great nextcloud server. I wonder if there is a compatible heatsink?
  25. I ran an update on my orangpi PC2. Setting up armbian-zsh (24.5.1) ... cp: cannot create directory '/home/unifi/.oh-my-zsh': No such file or directory cp: cannot create regular file '/home/unifi/.zshrc': No such file or directory chown: cannot access '/home/unifi/.oh-my-zsh': No such file or directory chown: cannot access '/home/unifi/.zshrc': No such file or directory Witch is to be expected to fail, because that is a system user I accedentally gave an above 1000 UID Unifi is UID 1003, my regular user bedna (1000) is the owner of /home/bedna I don't mind, I don't use zsh anyway, but figured you would want to know about this. Edit I spoke to early, the update actually breaks the system. Seems to be network related because it gets stuck at that if I connect a display to the device. I have restored a backup and retried 2 times, same thing, so there is presumably something wrong on your side here. This is what the terminal gave during the update, and as you can see, it looks like it all goes smooth, something in the firmware or kernel?
  26. It seems like things have evolved in the Middle East. Do you intend to make space available to the opensource community there?
  1. Load more activity
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines