Skip to content

Commit

Permalink
- Attempt to find newer releases in common locations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Extrems committed Sep 30, 2024
1 parent 7c4d937 commit 098b4f2
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 15 deletions.
4 changes: 2 additions & 2 deletions cube/swiss/source/devices/fat/deviceHandler-FAT.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ s32 deviceHandler_FAT_readFile(file_handle* file, void* buffer, u32 length) {
f_lseek(file->ffsFp, file->offset);

UINT bytes_read;
if(f_read(file->ffsFp, buffer, length, &bytes_read) != FR_OK || bytes_read != length) {
if(f_read(file->ffsFp, buffer, length, &bytes_read) != FR_OK) {
return -1;
}
file->offset = f_tell(file->ffsFp);
Expand All @@ -189,7 +189,7 @@ s32 deviceHandler_FAT_writeFile(file_handle* file, const void* buffer, u32 lengt
f_lseek(file->ffsFp, file->offset);

UINT bytes_written;
if(f_write(file->ffsFp, buffer, length, &bytes_written) != FR_OK || bytes_written != length) {
if(f_write(file->ffsFp, buffer, length, &bytes_written) != FR_OK) {
return -1;
}
file->offset = f_tell(file->ffsFp);
Expand Down
44 changes: 31 additions & 13 deletions cube/swiss/source/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "main.h"
#include "util.h"
#include "dvd.h"
#include "aram/sidestep.h"
#include "devices/filemeta.h"


Expand Down Expand Up @@ -159,26 +160,43 @@ static const char git_tags[][sizeof(GIT_COMMIT)] = {
#include "tags.h"
};
/* Autoboot DOL from the current device, from the current autoboot_dols list */
char *autoboot_dols[] = {"*/boot.dol", "*/boot2.dol", "*/swiss_r[1-9]*.dol"}; // Keep this list sorted
static const char *autoboot_dols[] = {
"atac:/[abxyz].dol",
"atac:/start.dol",
"atac:/ipl.dol",
"sd[abc]:/[abxyz].dol",
"sd[abc]:/start.dol",
"sd[abc]:/ipl.dol",
"sd[ab]:/AUTOEXEC.DOL",
"*/boot.dol",
"*/boot2.dol",
"*/swiss_r[1-9]*.dol"
};
void load_auto_dol() {
char trailer[sizeof(GIT_COMMIT)]; // Don't include the NUL termination in the comparison
size_t trailer_size;
char trailer[sizeof(GIT_COMMIT) - 1]; // Don't include the NUL termination in the comparison
int trailer_size;

memcpy(&curDir, devices[DEVICE_CUR]->initial, sizeof(file_handle));
scanFiles();
file_handle** dirEntries = getSortedDirEntries();
int dirEntryCount = getSortedDirEntryCount();
for (int i = 0; i < dirEntryCount; i++) {
for (int f = 0; f < (sizeof(autoboot_dols) / sizeof(char *)); f++) {
for (int f = 0; f < sizeof(autoboot_dols) / sizeof(*autoboot_dols); f++) {
for (int i = 0; i < dirEntryCount; i++) {
if (!fnmatch(autoboot_dols[f], dirEntries[i]->name, FNM_PATHNAME | FNM_CASEFOLD)) {
// Official Swiss releases have the short commit hash appended to
// the end of the DOL, compare it to our own to make sure we don't
// bootloop the same version
trailer_size = dirEntries[i]->size % 8 ? 7 : sizeof(trailer) - 1;
devices[DEVICE_CUR]->seekFile(dirEntries[i], -trailer_size, DEVICE_HANDLER_SEEK_END);
devices[DEVICE_CUR]->readFile(dirEntries[i], trailer, trailer_size);
if (memcmp(GIT_COMMIT, trailer, trailer_size) != 0 &&
memmem(git_tags, sizeof(git_tags), trailer, trailer_size) == NULL) {
DOLHEADER dolhdr;
devices[DEVICE_CUR]->seekFile(dirEntries[i], 0, DEVICE_HANDLER_SEEK_SET);
if (devices[DEVICE_CUR]->readFile(dirEntries[i], &dolhdr, DOLHDRLENGTH) == DOLHDRLENGTH) {
// Official Swiss releases have the short commit hash appended to
// the end of the DOL, compare it to our own to make sure we don't
// bootloop the same version
devices[DEVICE_CUR]->seekFile(dirEntries[i], DOLSize(&dolhdr), DEVICE_HANDLER_SEEK_SET);
trailer_size = devices[DEVICE_CUR]->readFile(dirEntries[i], trailer, sizeof(trailer));
} else {
trailer_size = 0;
}
if ((*autoboot_dols[f] == '*' && trailer_size < 7) || (trailer_size >= 7 &&
memcmp(GIT_COMMIT, trailer, trailer_size) != 0 &&
memmem(git_tags, sizeof(git_tags), trailer, trailer_size) == NULL)) {
// Emulate some of the menu's behavior to satisfy boot_dol
curSelection = i;
memcpy(&curFile, dirEntries[i], sizeof(file_handle));
Expand Down

0 comments on commit 098b4f2

Please sign in to comment.