Skip to content

Commit

Permalink
Update v6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Feb 20, 2019
1 parent 3e532da commit edda660
Show file tree
Hide file tree
Showing 14 changed files with 16,857 additions and 16,296 deletions.
2 changes: 1 addition & 1 deletion adrenaline_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#define __ADRENALINE_COMPAT_H__

#define ADRENALINE_VERSION_MAJOR 6
#define ADRENALINE_VERSION_MINOR 7
#define ADRENALINE_VERSION_MINOR 8
#define ADRENALINE_VERSION ((ADRENALINE_VERSION_MAJOR << 16) | ADRENALINE_VERSION_MINOR)

#define xstr(s) #s
Expand Down
Binary file modified bubble/pkg/sce_module/adrenaline_kernel.skprx
Binary file not shown.
Binary file modified bubble/pkg/sce_module/adrenaline_user.suprx
Binary file not shown.
251 changes: 251 additions & 0 deletions cef/updater/adrenaline_kernel.h

Large diffs are not rendered by default.

30,815 changes: 15,237 additions & 15,578 deletions cef/updater/adrenaline_user.h

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions cef/updater/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <common.h>

#include "adrenaline_user.h"
#include "adrenaline_kernel.h"

PSP_MODULE_INFO("updater", 0x800, 1, 0);
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_VSH);
Expand All @@ -35,6 +36,7 @@ typedef struct {

File files[] = {
{ "ms0:/__ADRENALINE__/sce_module/adrenaline_user.suprx", adrenaline_user, sizeof(adrenaline_user) },
{ "ms0:/__ADRENALINE__/sce_module/adrenaline_kernel.skprx", adrenaline_kernel, sizeof(adrenaline_kernel) },
};

void ErrorExit(int milisecs, char *fmt, ...) {
Expand Down Expand Up @@ -70,11 +72,11 @@ int main(void) {
ErrorExit(5000, "This update can only be applied with v6.4 or higher.\n");
}

if (sctrlSEGetVersion() >= 0x00060007) {
if (sctrlSEGetVersion() >= 0x00060008) {
ErrorExit(5000, "This update or a higher one was already applied.\n");
}

printf("6.61 Adrenaline-6.7 Installer\n");
printf("6.61 Adrenaline-6.8 Installer\n");
printf("Changes:\n\n");

printf("- Added support for PS1 multiplayer on PS Vita using an upcoming DS3/DS4 plugin.\n");
Expand Down
8 changes: 7 additions & 1 deletion kernel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ target_link_libraries(adrenaline_kernel
SceSysclibForDriver_stub
SceSysmemForDriver_stub
SceSysrootForKernel_stub
SceSysrootForDriver_stub
SceThreadmgrForDriver_stub
)

Expand All @@ -50,4 +51,9 @@ add_custom_target(copy
add_custom_target(pkg
COMMAND cp adrenaline_kernel.skprx ../../bubble/pkg/sce_module/adrenaline_kernel.skprx
DEPENDS adrenaline_kernel.skprx
)
)

add_custom_target(updater
COMMAND bin2c adrenaline_kernel.skprx ../../cef/updater/adrenaline_kernel.h adrenaline_kernel
DEPENDS adrenaline_kernel.skprx
)
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ For 6.61 Adrenaline-6.4 or higher, you can use the `System Update` in the XMB to
Changelog
---------

### Changelog v6.8
- Added sharp bilinear without scanlines filter. Thanks to rsn8887.
- Fixed PS1 slowdowns. Thanks to rsn8887.

### Changelog v6.7
- Added support for PS1 multiplayer on PS Vita using an upcoming DS3/DS4 plugin.

Expand Down
2 changes: 1 addition & 1 deletion user/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()
project(adrenaline_user)
include("${VITASDK}/share/vita.cmake" REQUIRED)

set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,-q -Wall -O3 -nostartfiles")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,-q -Wall -O3 -nostartfiles -fno-lto")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti -fno-exceptions")

# Builds
Expand Down
Binary file modified user/flash0/kd/systemctrl.prx
Binary file not shown.
11 changes: 11 additions & 0 deletions user/lz4/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
This repository uses 2 different licenses :
- all files in the `lib` directory use a BSD 2-Clause license
- all other files use a GPLv2 license, unless explicitly stated otherwise

Relevant license is reminded at the top of each source file,
and with presence of COPYING or LICENSE file in associated directories.

This model is selected to emphasize that
files in the `lib` directory are designed to be included into 3rd party applications,
while all other files, in `programs`, `tests` or `examples`,
receive more limited attention and support for such scenario.
Loading

0 comments on commit edda660

Please sign in to comment.