meta-hpe: remove proliant-support bbappend

The proliant support project needs to be uploaded until that time the bbappend will be removed.

Change-Id: Ie065f1dbc83a65b8c2e220de08a3f82b0ca1eb3a
Signed-off-by: Charles Kearney <charles.kearney@hpe.com>
diff --git a/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support.bbappend b/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support.bbappend
deleted file mode 100644
index 46bb098..0000000
--- a/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support.bbappend
+++ /dev/null
@@ -1,8 +0,0 @@
-FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
-
-# platform configuration files
-SRC_URI += "file://hpe-publish-uefi-version.sh"
-
-do_install:append() {
-   install -D ${WORKDIR}/hpe-publish-uefi-version ${D}/usr/bin/hpe-publish-uefi-version
-}
diff --git a/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support/hpe-publish-uefi-version.sh b/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support/hpe-publish-uefi-version.sh
deleted file mode 100644
index 0cc8f23..0000000
--- a/meta-hpe/meta-common/recipes-hpe/proliant-support/proliant-support/hpe-publish-uefi-version.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-#
-# Copyright (c) 2021 Hewlett-Packard Development Company, L.P.
-#
-# 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.
-#
-
-# RL300 doesn't support VROM, so we will be reading directly from
-# SPI-NOR. The whole process is a little bit slow but works
-
-# Find an MTD /dev file by name
-findmtd() {
-  echo "parameter $1"
-  m=$(grep -xl "$1" /sys/class/mtd/*/name)
-  m=${m%/name}
-  m=${m##*/}
-  echo "$m"
-}
-
-rom=uefi-master
-echo "Checking for mtd partition ${rom}"
-image=$(findmtd ${rom})
-if test -z "$image"
-then
-  echo "Unable to find mtd partition for ${rom}"
-  exit 1
-fi
-rom_mtd=${image}
-
-uefi_version="hpe-uefi-version /dev/${rom_mtd}"
-busctl set-property xyz.openbmc_project.Software.BMC.Updater /xyz/openbmc_project/software/bios_active xyz.openbmc_project.Software.Version Version s "$uefi_version"
-busctl get-property xyz.openbmc_project.Software.BMC.Updater /xyz/openbmc_project/software/bios_active xyz.openbmc_project.Software.Version Version