Skip to content

Instantly share code, notes, and snippets.

@lukegb
Created August 30, 2010 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lukegb/557883 to your computer and use it in GitHub Desktop.
Save lukegb/557883 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<dopscript from="nus"><!-- from can be USB, SD or NUS -->
<!-- this line installs the 4.2E System Menu but *not* it's associated IOS -->
<systemmenu installIos="false" version="4.2" region="E" />
<!-- and this one installs IOS70v6687, with no patches -->
<ios patchEsIdentify="false" patchFakesign="false" patchNand="false" version="70" revision="6687" />
<!-- and now we install the (latest) news channel for japan -->
<channel name="News Channel" region="J" />
<!-- of course, this is being rather unspecific -->
<!-- we can also just install "titles" -->
<title id="000000010000001C" revision="1806" patchEsIdentify="true" patchFakesign="true" patchNand="true" from="sd" /><!-- of course, patching only works if it's actually an IOS -->
<!-- and this title ONLY will be loaded from SD -->
</dopscript>
@Dykam
Copy link

Dykam commented Aug 30, 2010

{
"from": "nus",
"tasks": [
{ "task": "systemmenu", "installIos": false, "version": 4.2, "region": "E" },
{ "task": "ios", "patchEsIdentify": false, "patchFakesign": false, "version": 70, "revision": 6687 },
{ "task": "channel", "name": "News Channel", "region": "J" },
{ "task": "title", "id": "000000010000001C", "revision": 1806 "patchEsIdentify": true, "patchFakesign": true, "patchNand": true, "from": "sd" }
]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment