new_variant: remove ADD_PRIV_YAML from volteer and dedede

Due to legacy reasons, step_names.ADD_PRIV_YAML was still in the
repo_upload_list for volteer and the dedede reference boards. Neither
board uses yaml files, so remove this. Fortunately, new_variant.py
recognizes that there is no CL associated with the ADD_PRIV_YAML
step and doesn't try to upload it.

BUG=None
TEST=create a new variant of volteer, waddledee, or waddledoo. Verify
that .new_variant.yaml does not have the add_priv_yaml step.

Change-Id: Ia971968c1ecb6f55ef3577f6d3fa893a9610f107
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/dev-util/+/2287753
Tested-by: Paul Fagerburg <pfagerburg@chromium.org>
Auto-Submit: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Commit-Queue: Jack Rosenthal <jrosenth@chromium.org>
diff --git a/contrib/variant/volteer.py b/contrib/variant/volteer.py
index a8b4ab0..dd4fda3 100644
--- a/contrib/variant/volteer.py
+++ b/contrib/variant/volteer.py
@@ -73,8 +73,7 @@
 # List of commits that will be uploaded with `repo upload`
 repo_upload_list = [
     step_names.CB_CONFIG, step_names.COMMIT_FIT,
-    step_names.EC_IMAGE, step_names.ADD_PRIV_YAML,
-    step_names.FW_BUILD_CONFIG]
+    step_names.EC_IMAGE, step_names.FW_BUILD_CONFIG]
 
 # List of commits that will be pushed to review.coreboot.org
 coreboot_push_list = [step_names.CB_VARIANT]
diff --git a/contrib/variant/waddledee.py b/contrib/variant/waddledee.py
index b187a62..d743929 100644
--- a/contrib/variant/waddledee.py
+++ b/contrib/variant/waddledee.py
@@ -73,8 +73,7 @@
 # List of commits that will be uploaded with `repo upload`
 repo_upload_list = [
     step_names.CB_CONFIG, step_names.COMMIT_FIT,
-    step_names.EC_IMAGE, step_names.ADD_PRIV_YAML,
-    step_names.FW_BUILD_CONFIG]
+    step_names.EC_IMAGE, step_names.FW_BUILD_CONFIG]
 
 # List of commits that will be pushed to review.coreboot.org
 coreboot_push_list = [step_names.CB_VARIANT]