You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.txt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ Enhancement:
16
16
Bug fixes:
17
17
- Radxa ZERO 3 | Resolved an issue where onboard WiFi on the 3W did not work with the new kernel. Many thanks to @lsx285 and others for reporting this issue and testing fixed kernel builds: https://github.com/MichaIng/DietPi/issues/7867. The kernel has been updated on our AP repository, hence the issue won't appear anymore when updating DietPi or the package.
18
18
- Orange Pi 3B v2.1 | Resolved an issue where boot stalled if WiFi was enabled, which includes fresh images. The UNISOC/Spreadtrum 3rd party driver was tried to be loaded, which is not only unnecessary on revision 2.1 with Broadcom WiFi/Bluetooth chip, but causes a NULL pointer dereference from a certain Linux version on. The board revision is now detected in our scripts and the UNISOC driver loaded on v1.1 only. Many thanks to @techplayz32 and @Girb826 for reporting this issue: https://github.com/MichaIng/DietPi/issues/7728
19
+
- Orange Pi 3/3 LTS | Resolved an issue where WiFi and Bluetooth did not work without manually loading the related kernel modules "sprdwl_ng" and "sprdbt_tty" respectively. This is now done when toggling WiFi and Bluetooth via dietpi-config or dietpi.txt. Many thanks to @iMagz for reporting this issue: https://github.com/MichaIng/DietPi/issues/7878
19
20
- DietPi-Software | Home Assistant: Resolved an issue where the installation could have failed on RISC-V and ARMv6/7 Bookworm systems due to missing dependencies.
20
21
- DietPi-Software | Home Assistant: Worked around an issue where the installation and service start failed due to a missing upper dependency declaration. The issue has been solved at Home Assistant for their upcoming release, which will make our workaround obsolete.
Copy file name to clipboardExpand all lines: dietpi/func/dietpi-set_hardware
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1157,7 +1157,7 @@ _EOF_
1157
1157
1158
1158
case$G_HW_MODELin
1159
1159
[0-9]) (($G_HW_ONBOARD_WIFI))&& aBLUETOOTH_MODULES+=('hci_uart');; # RPi. This kernel module is used by other SBCs, but e.g. on ROCK 4 SE it is needed as well for WiFi: https://github.com/MichaIng/DietPi/issues/6943
1160
-
83|88) aBLUETOOTH_MODULES+=('sprdbt_tty');; # Orange Pi Zero 3/Zero 2W
1160
+
83|88|89|99) aBLUETOOTH_MODULES+=('sprdbt_tty');; # Orange Pi Zero 3/Zero 2W/3 LTS/3
0 commit comments