[VOL-5010] - Clone unit tests to run on a v2.12 branch

makefiles/consts.mk
makefiles/virtualenv.mk
-----------------------
  o Copy in latest library makefiles from repo:onf-make

global-jjb
packer/common-packer
--------------------
  o Upgrade LinuxFoundation submodules to the latest version.
  o global-jjb           : from=0.53.3 to=0.86.7
  o packaer/common-packer: from=0.1.0~22 to=0.12.1

.gitignore
makefiles/include.mk
makefiles/git/
makefiles/jjb/
--------------
  o Added convenience make targets to view submodule versions.
  o JJB target:jjb-gen added to prototype local pipeline edits.
  o Logic is conditional, library will only load when targets are requested.

jjb/voltha-test/voltha-certification/
jjb/voltha-test/voltha-certification/README
jjb/voltha-test/voltha-certification/master.yaml
------------------------------------------------
  o Create pseudo-branches within voltha testing so we can
  o 'branch' (simple directory copy) at release time VS
  o having to find and clone individual test suites from last release.

Change-Id: I3e0096d3326e76b3faa896d73183f9d28e946d06
diff --git a/makefiles/jjb/help.mk b/makefiles/jjb/help.mk
new file mode 100644
index 0000000..331c68a
--- /dev/null
+++ b/makefiles/jjb/help.mk
@@ -0,0 +1,38 @@
+# -*- makefile -*-
+# -----------------------------------------------------------------------
+# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# -----------------------------------------------------------------------
+# Intent: Helper makefile target used to setup for a release
+# -----------------------------------------------------------------------
+
+## ---------------------------------------------------------------------------
+## Intent: Display supported targets
+## ---------------------------------------------------------------------------
+help-jjb:
+	@echo
+	@echo '[JJB]'
+	@echo '  jjb-gen             Generate a local set of JJB pipelines'
+
+  ifdef VERBOSE
+	@echo '    LOGS=1            Display log from jjb-gen target'
+	@echo '    VERBOSE=1         Display generated pipeline files'
+  endif
+
+## ---------------------------------------------------------------------------
+## ---------------------------------------------------------------------------
+help ::
+	@echo '  help-jjb            Display Jenkins Job Builder targets'
+
+# [EOF]