From f2cc3f195916d7d4d6a9fb48aa622d210181561e Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Thu, 30 Jul 2026 07:45:58 +1000 Subject: [PATCH] [client] lgmp: set the old option names for easier migration by users --- client/transports/LGMP/lgmp.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/transports/LGMP/lgmp.c b/client/transports/LGMP/lgmp.c index 18634fb0..b4183d9a 100644 --- a/client/transports/LGMP/lgmp.c +++ b/client/transports/LGMP/lgmp.c @@ -111,6 +111,8 @@ static void lgmp_setup(void) { .module = "lgmp", .name = "shmDevice", + .old_module = "app", + .old_name = "shmFile", .shortopt = 'f', .description = "Shared memory file or KVMFR device path", .type = OPTION_TYPE_STRING, @@ -121,6 +123,8 @@ static void lgmp_setup(void) { .module = "lgmp", .name = "allowDMA", + .old_module = "app", + .old_name = "allowDMA", .description = "Allow direct DMA transfers when supported", .type = OPTION_TYPE_BOOL, .value.x_bool = true, @@ -128,6 +132,8 @@ static void lgmp_setup(void) { .module = "lgmp", .name = "framePollInterval", + .old_module = "app", + .old_name = "framePollInterval", .description = "Frame queue polling interval in microseconds", .type = OPTION_TYPE_INT, .value.x_int = 1000, @@ -135,6 +141,8 @@ static void lgmp_setup(void) { .module = "lgmp", .name = "cursorPollInterval", + .old_module = "app", + .old_name = "cursorPollInterval", .description = "Pointer queue polling interval in microseconds", .type = OPTION_TYPE_INT, .value.x_int = 1000,