From 77bd5c6ece275206f9657848ce59ced58568d859 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 6 Jan 2025 10:51:09 +0700 Subject: [PATCH] v9.10 (#7347) - DietPi-Software | myMPD: Enable for Bookworm on ARMv6 --- CHANGELOG.txt | 1 + dietpi/dietpi-software | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4d6620ebb3..cd4c0c9e35 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index 811e514326..a6c6f2ddcf 100755 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -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' @@ -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';;