Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

rolo: Write bootdata regardless of whether running from root or redirect

As long as bootdata is valid, write it.

Change-Id: I63114b835d43c800217d2b688f9f7e2c2fb34c15

authored by

Dana Conrad and committed by
Solomon Peachy
56dd7ead ec8fb871

+2 -3
+2 -3
firmware/rolo.c
··· 250 250 251 251 err = LOAD_FIRMWARE(filebuf, filename, filebuf_size); 252 252 #if defined(HAVE_BOOTDATA) && !defined(SIMULATOR) 253 - /* write the bootdata as if rolo were the bootloader 254 - * FIXME: this won't work for root redirect... */ 255 - if (!strcmp(filename, BOOTDIR "/" BOOTFILE) && boot_data_valid) 253 + // Write bootdata as long as the existing bootdata is valid 254 + if (boot_data_valid) 256 255 { 257 256 int volume = 0; 258 257