Quote:
Originally Posted by icon123
Does Calkulin's kitchens use any form of UC custimazation at the end? I need it to run a SDCONFIG.TXT file on my storage card at the end of the rom setup process. Anyone help?
Or does anyone know how to cook in Sashimi or get it to autorun after the rom is firs set up?
|
It does, you need to modify the lua file in System and use sdautrunuc
Here is how you can make SDAUTORUN compatible with RUNCC:
* Open RUNCC Package and open Runcc.lua in Notepad and add the below code at the end –
chk = oem.checkfileexist(“\\Storage Card\\Sdconfig.txt”)
if chk == 1 then
runcc.addrun(“RunDefault”, “run”, “\\Storage Card\\SDconfig.txt”)
end
* Now Remove the Reset command from the end of SDCONFIG.txt as the reset is controlled by RUNCC registry. Here is how the SDCONFIG.txt can be like:
LOCK:Enabled
CAB: \Storage Card\Cabs\Advancedv3.3.cab
CAB: \Storage Card\Cabs\Keyswop.CAB
Hopefully this will get you going
=)