mirror of
https://github.com/wiiu-env/wiiuhaxx_common.git
synced 2024-12-18 12:11:50 +01:00
Added 5.4.0 and 5.5.1.
This commit is contained in:
parent
393974884a
commit
bd3f3e96bc
@ -4,7 +4,8 @@ Currently only binary ROP-chains are supported, hence no support for using this
|
|||||||
|
|
||||||
You must specify the "sysver={val}" URL parameter for pages using this codebase, for selecting your Wii U system-version:
|
You must specify the "sysver={val}" URL parameter for pages using this codebase, for selecting your Wii U system-version:
|
||||||
* "532": 5.3.2
|
* "532": 5.3.2
|
||||||
* "550": 5.5.0
|
* "540": 5.4.0
|
||||||
|
* "550": 5.5.0 / 5.5.1
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
@ -12,6 +12,10 @@ if(isset($_REQUEST['sysver']))
|
|||||||
{
|
{
|
||||||
$sysver = 532;
|
$sysver = 532;
|
||||||
}
|
}
|
||||||
|
else if($_REQUEST['sysver']==="540")
|
||||||
|
{
|
||||||
|
$sysver = 540;
|
||||||
|
}
|
||||||
else if($_REQUEST['sysver']==="550")
|
else if($_REQUEST['sysver']==="550")
|
||||||
{
|
{
|
||||||
$sysver = 550;
|
$sysver = 550;
|
||||||
@ -20,7 +24,10 @@ if(isset($_REQUEST['sysver']))
|
|||||||
|
|
||||||
if($sysver===-1)die("The system-version must be specified via an URL parameter.");
|
if($sysver===-1)die("The system-version must be specified via an URL parameter.");
|
||||||
|
|
||||||
require_once("wiiuhaxx_rop_sysver_$sysver.php");
|
$filesysver = $sysver;
|
||||||
|
if($filesysver == 540)$filesysver = 532;
|
||||||
|
|
||||||
|
require_once("wiiuhaxx_rop_sysver_$filesysver.php");
|
||||||
|
|
||||||
if(!isset($ropchainselect))$ropchainselect = -1;
|
if(!isset($ropchainselect))$ropchainselect = -1;
|
||||||
if($ropchainselect == -1)
|
if($ropchainselect == -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user