diff options
author | Saqib Khan <khansa@us.ibm.com> | 2017-11-13 10:47:54 -0600 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2017-11-27 18:39:58 +0000 |
commit | 02917dfec4663c832803b9f242dd2628f3207ca6 (patch) | |
tree | d906ace8c8f132eb0a2880fc6a4f9144b21cc912 /meta-phosphor/common | |
parent | 5c933bada6bc2f8c1e34f2553206e26819cf26d9 (diff) | |
download | talos-openbmc-02917dfec4663c832803b9f242dd2628f3207ca6.tar.gz talos-openbmc-02917dfec4663c832803b9f242dd2628f3207ca6.zip |
Add required package "pkgconfig"
This package is required for the following receipes
in yocto-2.3.
Otherwise we get the error:
"fatal error: gio/gio.h: No such file or directory"
Change-Id: I020c8f31d707da716956b7856ba14076294bd7c7
Signed-off-by: Saqib Khan <khansa@us.ibm.com>
Diffstat (limited to 'meta-phosphor/common')
6 files changed, 6 insertions, 0 deletions
diff --git a/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-power.bb b/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-power.bb index db995e100..144d4e1e7 100644 --- a/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-power.bb +++ b/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-power.bb @@ -4,6 +4,7 @@ PR = "r1" inherit skeleton-gdbus inherit obmc-phosphor-dbus-service +inherit pkgconfig SKELETON_DIR = "pwrbutton" diff --git a/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-reset.bb b/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-reset.bb index 802e49909..9435d3141 100644 --- a/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-reset.bb +++ b/meta-phosphor/common/recipes-phosphor/chassis/obmc-button-reset.bb @@ -4,6 +4,7 @@ PR = "r1" inherit skeleton-gdbus inherit obmc-phosphor-dbus-service +inherit pkgconfig SKELETON_DIR = "rstbutton" diff --git a/meta-phosphor/common/recipes-phosphor/chassis/obmc-op-control-power.bb b/meta-phosphor/common/recipes-phosphor/chassis/obmc-op-control-power.bb index 4388e7a7b..5dd6d12cf 100644 --- a/meta-phosphor/common/recipes-phosphor/chassis/obmc-op-control-power.bb +++ b/meta-phosphor/common/recipes-phosphor/chassis/obmc-op-control-power.bb @@ -4,6 +4,7 @@ PR = "r1" inherit skeleton-gdbus inherit obmc-phosphor-dbus-service +inherit pkgconfig DEPENDS += "phosphor-mapper systemd" diff --git a/meta-phosphor/common/recipes-phosphor/chassis/obmc-pcie-detect.bb b/meta-phosphor/common/recipes-phosphor/chassis/obmc-pcie-detect.bb index b0709587a..6b5761b5e 100644 --- a/meta-phosphor/common/recipes-phosphor/chassis/obmc-pcie-detect.bb +++ b/meta-phosphor/common/recipes-phosphor/chassis/obmc-pcie-detect.bb @@ -4,6 +4,7 @@ PR = "r1" inherit skeleton-gdbus inherit obmc-phosphor-systemd +inherit pkgconfig SKELETON_DIR = "pciedetect" diff --git a/meta-phosphor/common/recipes-phosphor/skeleton/obmc-libobmc-intf.bb b/meta-phosphor/common/recipes-phosphor/skeleton/obmc-libobmc-intf.bb index 39043c0cf..09027dde3 100644 --- a/meta-phosphor/common/recipes-phosphor/skeleton/obmc-libobmc-intf.bb +++ b/meta-phosphor/common/recipes-phosphor/skeleton/obmc-libobmc-intf.bb @@ -4,6 +4,7 @@ methods and the GDBUS skeleton code for the org.openbmc DBUS API." PR = "r1" inherit skeleton +inherit pkgconfig DEPENDS += "glib-2.0" diff --git a/meta-phosphor/common/recipes-phosphor/system/obmc-control-bmc.bb b/meta-phosphor/common/recipes-phosphor/system/obmc-control-bmc.bb index 99f561853..eb5b4a810 100644 --- a/meta-phosphor/common/recipes-phosphor/system/obmc-control-bmc.bb +++ b/meta-phosphor/common/recipes-phosphor/system/obmc-control-bmc.bb @@ -5,6 +5,7 @@ PR = "r1" inherit skeleton-gdbus inherit obmc-phosphor-dbus-service +inherit pkgconfig SKELETON_DIR = "bmcctl" |