Update vendor extension in pipeline

This commit is contained in:
Vivek Kumar Dutta 2025-02-25 14:47:07 +05:30
parent 28f575dd0e
commit 25cf2cbffd
No known key found for this signature in database
GPG key ID: 4E09F5AD8265FD4C
2 changed files with 4 additions and 4 deletions

View file

@ -133,9 +133,9 @@ Device.DeviceInfo.FirmwareImage.{i}.Download() input:FileSize
Device.DeviceInfo.FirmwareImage.{i}.Download() input:Password Device.DeviceInfo.FirmwareImage.{i}.Download() input:Password
Device.DeviceInfo.FirmwareImage.{i}.Download() input:URL Device.DeviceInfo.FirmwareImage.{i}.Download() input:URL
Device.DeviceInfo.FirmwareImage.{i}.Download() input:Username Device.DeviceInfo.FirmwareImage.{i}.Download() input:Username
Device.DeviceInfo.FirmwareImage.{i}.Download() input:X_IOPSYS_EU_KeepConfig Device.DeviceInfo.FirmwareImage.{i}.Download() input:X_IOWRT_EU_KeepConfig
``` ```
Customer can use X_IOPSYS_EU_KeepConfig=0, to do factory reset(not copy the current config to next firmware) while doing the download. Customer can use X_IOWRT_EU_KeepConfig=0, to do factory reset(not copy the current config to next firmware) while doing the download.
> Note: Default value of X_IOPSYS_EU_KeepConfig is 1, so in case this option not used, it keeps the config(as the default behavior of the CPE). > Note: Default value of X_IOWRT_EU_KeepConfig is 1, so in case this option not used, it keeps the config(as the default behavior of the CPE).

View file

@ -40,7 +40,7 @@ endif
ifeq ($(SYSMNGR_VENDOR_EXTENSIONS),y) ifeq ($(SYSMNGR_VENDOR_EXTENSIONS),y)
PROG_CFLAGS += -DSYSMNGR_VENDOR_EXTENSIONS PROG_CFLAGS += -DSYSMNGR_VENDOR_EXTENSIONS
ifeq ($(filter -DCUSTOM_PREFIX=%,$(PROG_CFLAGS)),) ifeq ($(filter -DCUSTOM_PREFIX=%,$(PROG_CFLAGS)),)
PROG_CFLAGS += -DCUSTOM_PREFIX=\"X_IOPSYS_EU_\" PROG_CFLAGS += -DCUSTOM_PREFIX=\"X_IOWRT_EU_\"
endif endif
endif endif