Persistence the led group asserted value by default

Currently, only IBM's P10 machine will persist the Asserted attribute
value of ledGroup by default. But for other systems, most do not need
to perform persistence actions.

The intent behind this commit is to add a switch to control the
persistence function, and it is enabled by default in CI and disabled
by default in Yocto.

Tested: Regardless of whether `persistent-led-asserted` is enabled or
disabled, the ledmanager process works fine.

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: I75b59a12dde417a9ccadaf25b2af07fc33186a01
diff --git a/meson.options b/meson.options
index d626a88..0556ed0 100644
--- a/meson.options
+++ b/meson.options
@@ -21,3 +21,9 @@
     value: 'disabled',
     description : 'Enable OperationalStatus monitor'
 )
+
+option(
+    'persistent-led-asserted', type : 'feature',
+    value: 'enabled',
+    description : 'Persistent the asserted status of ledgroup'
+)