Experimental PKG generation support
This commit is contained in:
parent
5ed8b76902
commit
36fdbc1710
|
@ -0,0 +1,11 @@
|
||||||
|
rem %1 input cue file
|
||||||
|
rem %2 Optional picture files
|
||||||
|
setlocal ENABLEDELAYEDEXPANSION
|
||||||
|
|
||||||
|
echo %PATH%
|
||||||
|
if [%2] == [] (
|
||||||
|
set img_input=
|
||||||
|
) else (
|
||||||
|
set img_input=--cover %2/cover.png --pic0 %2/pic0.png --pic1 %2/pic1.png
|
||||||
|
)
|
||||||
|
pop-fe.exe --ps3-pkg=%~dpn1.pkg %img_input% %1
|
|
@ -1,5 +1,6 @@
|
||||||
*.bin
|
*.bin
|
||||||
*.cue
|
*.cue
|
||||||
|
*.pkg
|
||||||
*.d
|
*.d
|
||||||
*.o
|
*.o
|
||||||
*.lba
|
*.lba
|
||||||
|
|
|
@ -27,6 +27,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "create pkg (experimental)",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "run_pop_fe.bat ${workspaceFolder}/iso/${input:region}/PoolBox.cue",
|
||||||
|
"group": "build",
|
||||||
|
"options": {
|
||||||
|
// v otherwise the tool won't start...
|
||||||
|
"cwd": "${env:POP_FE_PATH}",
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "read memory map",
|
"label": "read memory map",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
|
|
@ -7,8 +7,9 @@ $(CD_OUTPUT): always
|
||||||
all: $(CD_OUTPUT)
|
all: $(CD_OUTPUT)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -fr $(TV_FORMAT)/*.bin
|
rm -fr $(REGION)/*.bin
|
||||||
rm -fr $(TV_FORMAT)/*.cue
|
rm -fr $(REGION)/*.cue
|
||||||
rm -fr $(TV_FORMAT)/*.lba
|
rm -fr $(REGION)/*.lba
|
||||||
|
rm -fr $(REGION)/*.pkg
|
||||||
|
|
||||||
always: ;
|
always: ;
|
|
@ -27,6 +27,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "create pkg (experimental)",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "run_pop_fe.bat ${workspaceFolder}/iso/${input:region}/#{ProjectName}.cue",
|
||||||
|
"group": "build",
|
||||||
|
"options": {
|
||||||
|
// v otherwise the tool won't start...
|
||||||
|
"cwd": "${env:POP_FE_PATH}",
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "read memory map",
|
"label": "read memory map",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
*.bin
|
*.bin
|
||||||
*.cue
|
*.cue
|
||||||
|
*.pkg
|
||||||
*.d
|
*.d
|
||||||
*.o
|
*.o
|
||||||
*.lba
|
*.lba
|
||||||
|
|
Loading…
Reference in New Issue