Files
etaHEN/Source Code/bootstrapper/source/daemon.c
LightningMods 0fe0407b3a etaHEN 2.4B
etaHEN 2.4B

etaHEN 2.4B Change log

- Updated to support the latest PS5 Payload SDK
- Fixed etaHEN and Cheats support for 8.40-10.01
- Added a Game Overlay menu to show CPU/GPU Temp and utilization, Local IP Address and other future states
- Added a Kstuff menu for options like downloading the latest kstuff from github, turning off kstufff autoload and more
- Added a Custom Background Package Installer for installing PKGs from internal storage from any directory (Requires DPIv2 enabled for 5.50+)
- DPIv2 can now download local files via url example http://192.xxx.xxx.xxx:12800/data/etaHEN/etaHEN.log
- Improved Cheats support, cheats with or without 0 sections are now supported
- Added Fix by TheFlow to Improve 2.xx PS4 PKG speeds
- Replaced the donation links in the etaHEN credits menu with ones to github sponsers
- Removed the non-whitelist app jailbreak option and moved it to an optional Legacy CMD Server option in the etaHEN Settings off by default
- Game Decryptor has been updated for the Itemzflow Dumper
- Updated the Plugin loader System
- The Payload SDK ELFLDR is now REQUIRED for etaHEN to load
- Replaced HTTP2 with Curl for better compatibility
- Added timeout for ShellUI to receive a response (will stop it from freezing if no response is given)

small fix
2025-12-01 20:31:16 -05:00

77 lines
2.2 KiB
C

__asm__(".intel_syntax noprefix\n"
".section .data\n"
".global daemon_start\n"
".type daemon_start, @object\n"
".align 16\n"
"daemon_start:\n"
".incbin \"../../bin/daemon.elf\"\n"
"daemon_end:\n"
".global daemon_size\n"
".type daemon_size, @object\n"
".align 4\n"
"daemon_size:\n"
".int daemon_end - daemon_start\n"
".global util_start\n"
".type util_start, @object\n"
".align 16\n"
"util_start:\n"
".incbin \"../../bin/util.elf\"\n"
"util_end:\n"
".global util_size\n"
".type util_size, @object\n"
".align 4\n"
"util_size:\n"
".int util_end - util_start\n"
".global store_png_start\n"
".type store_png_start, @object\n"
".align 16\n"
"store_png_start:\n"
".incbin \"assets/store.png\"\n"
"store_png_end:\n"
".global store_png_size\n"
".type store_png_size, @object\n"
".align 4\n"
"store_png_size:\n"
".int store_png_end - store_png_start\n"
".global sicon_start\n"
".type sicon_start, @object\n"
".align 16\n"
"sicon_start:\n"
".incbin \"assets/etahen_sicon.png\"\n"
"sicon_end:\n"
".global sicon_size\n"
".type sicon_size, @object\n"
".align 4\n"
"sicon_size:\n"
".int sicon_end - sicon_start\n"
".global webman_icon_start\n"
".type webman_icon_start,"
"@object\n"
".align 16\n"
"webman_icon_start:\n"
".incbin \"assets/webMAN.png\"\n"
"webman_icon_end:\n"
".global webman_icon_size\n"
".type webman_icon_size, @object\n"
".align 4\n"
"webman_icon_size:\n"
".int webman_icon_end - webman_icon_start\n"
".global kstuff_start\n"
".type kstuff_start, @object\n"
".align 16\n"
"kstuff_start:\n"
".incbin \"assets/kstuff.elf\"\n"
"kstuff_end:\n"
".global kstuff_size\n"
".type kstuff_size, @object\n"
".align 4\n"
"kstuff_size:\n"
".int kstuff_end - kstuff_start\n"
);