diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2017-07-30 21:25:23 -0400 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2017-08-03 01:49:52 +0000 |
commit | 4785fdf99cbbe6486ef0fb5da551ea3ea557b13d (patch) | |
tree | 0b8a821f82fed377b94bceeaa4a603a2c3b91073 /meta-phosphor | |
parent | 0bf11809a80f8829ffc47fd0ea06ffab93199638 (diff) | |
download | talos-openbmc-4785fdf99cbbe6486ef0fb5da551ea3ea557b13d.tar.gz talos-openbmc-4785fdf99cbbe6486ef0fb5da551ea3ea557b13d.zip |
fans: Add missing evdev dependency
The fan repository depends on libevdev unconditionally now.
Change-Id: I5cbddcb865ab9782e7556de83df05076c3f520b7
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor')
-rw-r--r-- | meta-phosphor/common/recipes-phosphor/fans/phosphor-fan.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-phosphor/common/recipes-phosphor/fans/phosphor-fan.bb b/meta-phosphor/common/recipes-phosphor/fans/phosphor-fan.bb index fd07908b2..b28271b23 100644 --- a/meta-phosphor/common/recipes-phosphor/fans/phosphor-fan.bb +++ b/meta-phosphor/common/recipes-phosphor/fans/phosphor-fan.bb @@ -17,6 +17,7 @@ DEPENDS += "python-pyyaml-native" DEPENDS += "python-mako-native" DEPENDS += "sdbusplus" DEPENDS += "phosphor-logging" +DEPENDS += "libevdev" # Package configuration FAN_PACKAGES = " \ @@ -108,4 +109,4 @@ SYSTEMD_LINK_${PN}-monitor += "${@compose_list(d, 'FMT_MONITOR', 'OBMC_CHASSIS_I # -------------------------------------- # phosphor-cooling-type specific configuration -PACKAGECONFIG[cooling-type] = "--enable-cooling-type,--disable-cooling-type,libevdev," +PACKAGECONFIG[cooling-type] = "--enable-cooling-type,--disable-cooling-type,," |