From b497e717088306a5c5578d902c1e4e1590fcb682 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 13 Sep 2025 08:34:38 -0400 Subject: [PATCH] hibylinux: Shrink PLUGIN_BUFFER to 512K Hosted platforms use dlopen() for plugin loading, and hibylinux is relatively RAM constrained, so shrink this will free up more memory to the OS for plugins to use. Change-Id: I6b7cb17b964eaf5afc4958db242dfe4b82178e2e --- firmware/export/config/hibylinux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/config/hibylinux.h b/firmware/export/config/hibylinux.h index 6853139899..ebab5bdf97 100644 --- a/firmware/export/config/hibylinux.h +++ b/firmware/export/config/hibylinux.h @@ -37,7 +37,7 @@ #define CODEC_SIZE 0x100000 /* The number of bytes reserved for loadable plugins */ -#define PLUGIN_BUFFER_SIZE 0x100000 +#define PLUGIN_BUFFER_SIZE 0x80000 #define CONFIG_LCD LCD_INGENIC_LINUX