Skip to content

Commit

Permalink
v9.10 (#7347)
Browse files Browse the repository at this point in the history
- DietPi-Software | myMPD: Enable for Bookworm on ARMv6
  • Loading branch information
MichaIng authored Jan 6, 2025
1 parent cd56747 commit 77bd5c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v9.10
New images:

Enhancements:
- DietPi-Software | myMPD: We enabled the software option for ARMv6 Bookworm systems, since packages for Raspbian Bookworm are now available. Many thanks to @hackslikeus for bringing up the topic: https://github.com/MichaIng/DietPi/issues/7345

Bug fixes:
- DietPi-Software | Sonarr: Resolved an issue where the internal updater did not work due to permission limits in the systemd unit. Many thanks to @tellice for reporting this issue: https://github.com/MichaIng/DietPi/issues/7321
Expand Down
8 changes: 4 additions & 4 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,10 @@ Available commands:
aSOFTWARE_CATX[$software_id]=2
aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/media/#mympd'
aSOFTWARE_DEPS[$software_id]='128'
# - RISC-V: No package: https://download.opensuse.org/repositories/home:/jcorporation/Debian_Unstable/
# - RISC-V: No package: https://download.opensuse.org/repositories/home:/jcorporation/Debian_Testing/
aSOFTWARE_AVAIL_G_HW_ARCH[$software_id,11]=0
# - ARMv6 Bookworm/Trixie: No Bookworm or testing suite available and Bullseye package depends on libflac8
(( $G_HW_ARCH == 1 && $G_DISTRO > 6 )) && aSOFTWARE_AVAIL_G_DISTRO[$software_id,$G_DISTRO]=0
# - ARMv6 Trixie: No Raspbian_Testing suite available and Bookworm package depends on libflac12
(( $G_HW_ARCH == 1 && $G_DISTRO > 7 )) && aSOFTWARE_AVAIL_G_DISTRO[$software_id,$G_DISTRO]=0
#------------------
software_id=119
aSOFTWARE_NAME[$software_id]='CAVA'
Expand Down Expand Up @@ -4930,7 +4930,7 @@ The install script will now exit. After applying one of the the above, rerun die
then
# Distro: https://download.opensuse.org/repositories/home:/jcorporation/
local distro='Debian_'
(( $G_RASPBIAN )) && distro='Raspbian_'
(( $G_HW_ARCH == 1 )) && distro='Raspbian_'

case $G_DISTRO in
6) distro+='11';;
Expand Down

0 comments on commit 77bd5c6

Please sign in to comment.