Hi,
I've already setup a SFS file comprised of some software and can load it successfully from the control panel/menu | System | System SFS Loader.
It would be even better if I could load the SFS file in the boot process.
Tried two entries in refind.conf using the parameter extrasfs as mentioned at
https://distro.ibiblio.org/fatdog/web/f ... tions.html.
One uses the add_options rEFInd option:
Code: Select all
menuentry "Fatdog64 Linux with save dir and sfs" {
icon /EFI/boot/icons/os_fatdog.png
volume PUPPIES
initrd \FD901\initrd
loader /FD901/vmlinuz
options "savefile=ram:uuid:6e301609-8536-4989-871f-b4e1c7a47915:FatDog/fd64save waitdev=5"
add_options "extrasfs=uuid:6e301609-8536-4989-871f-b4e1c7a47915:FatDog/project3.sfs waitdev=5"
}
In this second one I just appended the 'extrasfs=...' stuff to the options line, using a ; as separator:
Code: Select all
menuentry "Fatdog64 Linux with save dir and sfs2" {
icon /EFI/boot/icons/os_fatdog.png
volume PUPPIES
initrd \FD901\initrd
loader /FD901/vmlinuz
options "savefile=ram:uuid:6e301609-8536-4989-871f-b4e1c7a47915:FatDog/fd64save waitdev=5;extrasfs=uuid:6e301609-8536-4989-871f-b4e1c7a47915:FatDog/project3.sfs waitdev=5"
}
None of them worked.
How should I do it?