rw-r-r-0644 / HBAS-Portable

Launch homebrew appstore for wii u directly from the browser without the need of files on the sd! Based on loadiine GX2 files
11 stars 1 forks source link

Boot elf if already present, else download and boot #1

Open vgmoose opened 7 years ago

vgmoose commented 7 years ago

Here's a feature request :innocent: It would be nice cause it would ease up load on the server if they already have the file that it would download anyway.

Maybe something like: (pseudocode)

target = "/apps/appstore/hbas.elf"
if "sd:"+target exists:
    run("sd:"+target)
else:
    downloadAndRun("http://wiiubru.com/appstore"+target)
done

But, I don't know if there is enough permission to read the SD at this point.

https://github.com/rw-r-r-0644/HBAS-Portable/blob/master/sd_loader/src/entry.c#L76

CreeperMario commented 7 years ago

But, I don't know if there is enough permission to read the SD at this point.

There should be, because at this point in HBL's sd_loader, it mounts the SD Card and boots HBL from it.

rw-r-r-0644 commented 7 years ago

We have to free some space before though...