Skip to content

Commit

Permalink
webupdate: fix download folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Feb 26, 2012
1 parent 96091d5 commit 55e04b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/flash.c
Expand Up @@ -397,14 +397,14 @@ static void download_images(void)
rescue = sysconfig_is_rescue();

if(rescue || (strcmp(available_socbios, soc) != 0)) {
strcpy(bitstream_name, "/ramdisk/soc.fpg");
strcpy(bios_name, "/ramdisk/bios.bin");
strcpy(bitstream_name, "/soc.fpg");
strcpy(bios_name, "/bios.bin");
} else {
bitstream_name[0] = 0;
bios_name[0] = 0;
}
if(rescue || (strcmp(available_application, VERSION) != 0))
strcpy(application_name, "/ramdisk/flickernoise.fbi");
strcpy(application_name, "/flickernoise.fbi");
else
application_name[0] = 0;

Expand Down

0 comments on commit 55e04b7

Please sign in to comment.