update configurations for phosphor-led-manager

phosphor-led-manager no longer assumes any default led priority.

The behavior was changed in

https://github.com/openbmc/phosphor-led-manager/commit/5a9f651949c133ed0868d72734c4ac82c75a7656
and
https://github.com/openbmc/phosphor-led-manager/commit/55badf7979f57d5f9ed2db726eebf35e84d0dac5

The led priority needs to be configured, so updating all configurations
here.

Before, led-manager assumed a default led priority of 'Blink'.

So this patch is just making that explicit in the existing
configurations. There should be no behavior change from this patch.

Change-Id: I74aabb567ccf6682d56877f8bb42e636fc1746f6
Signed-off-by: Alexander Hansen <alexander.hansen@9elements.com>
diff --git a/meta-yadro/meta-vegman/recipes-phosphor/leds/vegman-led-manager-config/led.yaml b/meta-yadro/meta-vegman/recipes-phosphor/leds/vegman-led-manager-config/led.yaml
index 922d993..b97a438 100644
--- a/meta-yadro/meta-vegman/recipes-phosphor/leds/vegman-led-manager-config/led.yaml
+++ b/meta-yadro/meta-vegman/recipes-phosphor/leds/vegman-led-manager-config/led.yaml
@@ -9,34 +9,43 @@
 status_ok:
     platform_status_green:
         Action: 'Off'
+        Priority: 'Blink'
     platform_status_red:
         Action: 'Off'
+        Priority: 'Blink'
 
 status_degraded:
     platform_status_green:
         Action: 'Off'
+        Priority: 'Blink'
     platform_status_red:
         Action: 'Blink'
         DutyOn: 25
         Period: 2000
+        Priority: 'Blink'
 
 status_non_critical:
     platform_status_green:
         Action: 'Off'
+        Priority: 'Blink'
     platform_status_red:
         Action: 'Blink'
         DutyOn: 50
         Period: 1000
+        Priority: 'Blink'
 
 status_critical:
     platform_status_green:
         Action: 'Off'
+        Priority: 'Blink'
     platform_status_red:
         Action: 'On'
+        Priority: 'Blink'
 
 enclosure_identify:
     platform_indicator_blue:
         Action: 'On'
+        Priority: 'Blink'
 
 #
 # May be asserted through IPMI or RedFish.
@@ -44,12 +53,14 @@
 enclosure_identify_blink:
     platform_indicator_blue:
         Action: 'On'
+        Priority: 'Blink'
 
 #
 # Asserted while firmware is flashing
 firmware_flashing:
     platform_indicator_blue:
         Action: 'Blink'
+        Priority: 'Blink'
 
 #
 # Power button indication
@@ -57,26 +68,34 @@
 power_standby:
     platform_power_green:
         Action: 'On'
+        Priority: 'Blink'
     platform_power_red:
         Action: 'On'
+        Priority: 'Blink'
 
 power_sequence:
     platform_power_green:
         Action: 'Blink'
         DutyOn: 50
         Period: 1000
+        Priority: 'Blink'
     platform_power_red:
         Action: 'Off'
+        Priority: 'Blink'
 
 power_on:
     platform_power_green:
         Action: 'On'
+        Priority: 'Blink'
     platform_power_red:
         Action: 'Off'
+        Priority: 'Blink'
 
 power_failure:
     platform_power_green:
         Action: 'Off'
+        Priority: 'Blink'
     platform_power_red:
         Action: 'On'
+        Priority: 'Blink'