Add PS5 WiFi firmware initramfs loader support

Add a CPIO wrapper to add new files/folders at initrd at runtime
Add early boot scripts (initramfs-tools for debian-based) support
This commit is contained in:
buzzer-re
2026-05-10 19:28:00 -03:00
parent 4355489449
commit 28e2ccd35a
11 changed files with 337 additions and 1 deletions

8
include/firmware.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef FIRMWARE_H
#define FIRMWARE_H
#include <stddef.h>
int resolve_device_firmwares(void **initrd, size_t *initrd_size);
#endif