From e84d04554cc746ce89ddc902f623b79a5932cef0 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sun, 10 Nov 2019 15:34:22 +0000 Subject: [PATCH 1/7] README.md edited online with Bitbucket --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bb1f923..5b32c31 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,10 @@ re-activate your test/dev kit vita after it expires only works if you have your activation files still -tm0:activate/act.dat & tm0:activate/actsig.dat +tm0:activate/act.dat & tm0:activate/actsig.dat & 0x520 in NVS. -also due to a restriction in the firmware (probably added in 3.55) -the SecureTick cannot be set to any date before 1/1/2015, -so you will get error code 0x80251000 if your start activation date is before this time. +I attempted to bypass the 1/1/2015 restriction on setting the srtc but it seems anything before it +does *technically* change but is considered an invalid time when being read. (this doesnt matter on devkit, only a minor annoyance on soft resets!) upon running activate.vpk your activation data will be backed up to pd0:/data/ and ux0:/data/ its highly recommended to make a copy on your PC as well. @@ -18,4 +17,7 @@ ive made the modifications nessorcary to make it install regardless and hosting thanks zecoaxco for saving me from RE'ing ksceRtcSetCurrentNetworkTick -Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-v1.1.vpk \ No newline at end of file +Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-v1.1.vpk + +NOTE: IF YOU USED THIS BEFORE ON 1.1 OR LOWER I HIGHLY RECOMMEND RUNNING IT AGAIN ON 1.2+ +AS IT BACKS UP THE ACTIVATION TOKEN IN NVS AS WELL NOW. \ No newline at end of file From 009663b9ea2e66b25e9b183e28025bb72d7e4b62 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sun, 10 Nov 2019 15:41:14 +0000 Subject: [PATCH 2/7] README.md edited online with Bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b32c31..6c72c62 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ ive made the modifications nessorcary to make it install regardless and hosting thanks zecoaxco for saving me from RE'ing ksceRtcSetCurrentNetworkTick -Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-v1.1.vpk +Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-1.2.vpk NOTE: IF YOU USED THIS BEFORE ON 1.1 OR LOWER I HIGHLY RECOMMEND RUNNING IT AGAIN ON 1.2+ AS IT BACKS UP THE ACTIVATION TOKEN IN NVS AS WELL NOW. \ No newline at end of file From 9d852d4d87e24be7f4fa40d69682251e091c94ab Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sun, 10 Nov 2019 16:14:27 +0000 Subject: [PATCH 3/7] README.md edited online with Bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c72c62..33b4ddf 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ thanks zecoaxco for saving me from RE'ing ksceRtcSetCurrentNetworkTick Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-1.2.vpk NOTE: IF YOU USED THIS BEFORE ON 1.1 OR LOWER I HIGHLY RECOMMEND RUNNING IT AGAIN ON 1.2+ -AS IT BACKS UP THE ACTIVATION TOKEN IN NVS AS WELL NOW. \ No newline at end of file +AS IT BACKS UP THE ACTIVATION TOKEN IN NVS AS WELL NOW. WHICH IS *REQUIRED* FOR A PROPER RESTORE OF ACTIVATION DATA. \ No newline at end of file From a75095938ccec3949a1479b60494790c9e318494 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sun, 10 Nov 2019 16:23:11 +0000 Subject: [PATCH 4/7] README.md edited online with Bitbucket --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 33b4ddf..913b4aa 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,11 @@ does *technically* change but is considered an invalid time when being read. upon running activate.vpk your activation data will be backed up to pd0:/data/ and ux0:/data/ its highly recommended to make a copy on your PC as well. -pd0:data/ because its read-only and it remains even after updating or reinstalling the firmware. basicly it would be difficult to actidently delete them +pd0:data/ because its read-only and it remains even after updating or reinstalling the firmware. basicly it would be difficult to actidently delete them + +(note: the writing to pd0 is the reason for the 'brick' warning in vitashell- +you cant brick from modding pd0- it holds welcome park and music files and it +only adds extra files not changing anything thats on there) oh btw, normal henkaku doesnt work if your system is activated, (it assumes its allready installed) ive made the modifications nessorcary to make it install regardless and hosting it currently at http://psmreborn.com/act-hen From b7e34b465ce46024aa13077686fb35f079f3f7bd Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Mon, 11 Nov 2019 21:31:38 +0000 Subject: [PATCH 5/7] kern_clockset.c edited online with Bitbucket --- kern/kern_clockset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/kern_clockset.c b/kern/kern_clockset.c index 6100344..79fb874 100644 --- a/kern/kern_clockset.c +++ b/kern/kern_clockset.c @@ -62,7 +62,7 @@ int ksilSblPostSsMgrSetCpRtc(unsigned int timestamp) int ksilDumpNvsAct(int fileno) { char nvsBuf[0x20]; - memset(nvsBuf,0x00,0x520); + memset(nvsBuf,0x00,0x20); int ret = ksceSblNvsReadData(0x520,nvsBuf,0x20); if(fileno == 1) From 9f9c2bae50f0a7ad62ffd4471a5d3fc1ce7cdc70 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Mon, 11 Nov 2019 21:49:53 +0000 Subject: [PATCH 6/7] README.md edited online with Bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 913b4aa..6da095b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ ive made the modifications nessorcary to make it install regardless and hosting thanks zecoaxco for saving me from RE'ing ksceRtcSetCurrentNetworkTick -Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-1.2.vpk +Download: https://bitbucket.org/SilicaAndPina/activate.vpk/downloads/activate-v1.2.vpk NOTE: IF YOU USED THIS BEFORE ON 1.1 OR LOWER I HIGHLY RECOMMEND RUNNING IT AGAIN ON 1.2+ AS IT BACKS UP THE ACTIVATION TOKEN IN NVS AS WELL NOW. WHICH IS *REQUIRED* FOR A PROPER RESTORE OF ACTIVATION DATA. \ No newline at end of file From 379664387702b9d1626f47240fe207d1a308c4a0 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Mon, 11 Nov 2019 23:12:07 +0000 Subject: [PATCH 7/7] kern_clockset.c edited online with Bitbucket --- kern/kern_clockset.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kern/kern_clockset.c b/kern/kern_clockset.c index 79fb874..82cc9f9 100644 --- a/kern/kern_clockset.c +++ b/kern/kern_clockset.c @@ -62,7 +62,6 @@ int ksilSblPostSsMgrSetCpRtc(unsigned int timestamp) int ksilDumpNvsAct(int fileno) { char nvsBuf[0x20]; - memset(nvsBuf,0x00,0x20); int ret = ksceSblNvsReadData(0x520,nvsBuf,0x20); if(fileno == 1)