mirror of
https://github.com/ps5-linux/ps5-linux-loader.git
synced 2026-05-12 01:31:59 +00:00
logging & comment
This commit is contained in:
@@ -171,6 +171,9 @@ static int resolve_ps5_wifi_firmware(void **initrd, size_t *initrd_size) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Wrapper to resolve future firmwares images using the kernel, at the moment only Marvell WiFi driver
|
||||
//
|
||||
int resolve_device_firmwares(void **initrd, size_t *initrd_size) {
|
||||
return resolve_ps5_wifi_firmware(initrd, initrd_size);
|
||||
}
|
||||
|
||||
@@ -228,8 +228,10 @@ int fetch_linux(struct linux_info *info) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (resolve_device_firmwares(&initrd, &initrd_size) < 0)
|
||||
if (resolve_device_firmwares(&initrd, &initrd_size) < 0) {
|
||||
notify("Something went wrong while resolving device firmwares - Aborting\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
size_t vram_size;
|
||||
char buf_vram[16] = {};
|
||||
|
||||
Reference in New Issue
Block a user