A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

[Bugfix] call lcd_awake() unconditioanlly on shutdown for devices with HAVE_LCD_SLEEP

last patch limited this to the 6G but the ipod Video has similar reports

I have a feeling there are others and enabling this unconditionally shouldn't hurt
the other devices

Change-Id: Ie4077299550ee028c32d746e5fe6c60b707f052e

+1 -1
+1 -1
firmware/backlight.c
··· 676 676 case SYS_POWEROFF: /* Lock backlight on poweroff so it doesn't */ 677 677 locked = true; /* go off before power is actually cut. */ 678 678 #if !defined(BOOTLOADER) 679 - #if defined(HAVE_LCD_SLEEP) && defined(IPOD_6G) /* bugfix ipod 6G crashes if screen off at shutdown */ 679 + #if defined(HAVE_LCD_SLEEP) /* bugfix ipod Video, 6G crashes if screen off at shutdown */ 680 680 lcd_awake(); 681 681 #endif 682 682 if (!global_settings.show_shutdown_message)