diff options
-rw-r--r-- | meta/conf/distro/include/maintainers.inc | 1 | ||||
-rw-r--r-- | meta/recipes-support/hwdata/hwdata_0.389.bb | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index fa2bca8358..b350b81654 100644 --- a/meta/conf/distro/include/maintainers.inc +++ b/meta/conf/distro/include/maintainers.inc | |||
@@ -262,6 +262,7 @@ RECIPE_MAINTAINER:pn-harfbuzz = "Anuj Mittal <anuj.mittal@intel.com>" | |||
262 | RECIPE_MAINTAINER:pn-hdparm = "Denys Dmytriyenko <denis@denix.org>" | 262 | RECIPE_MAINTAINER:pn-hdparm = "Denys Dmytriyenko <denis@denix.org>" |
263 | RECIPE_MAINTAINER:pn-help2man = "Hongxu Jia <hongxu.jia@windriver.com>" | 263 | RECIPE_MAINTAINER:pn-help2man = "Hongxu Jia <hongxu.jia@windriver.com>" |
264 | RECIPE_MAINTAINER:pn-hicolor-icon-theme = "Anuj Mittal <anuj.mittal@intel.com>" | 264 | RECIPE_MAINTAINER:pn-hicolor-icon-theme = "Anuj Mittal <anuj.mittal@intel.com>" |
265 | RECIPE_MAINTAINER:pn-hwdata = "Hiago De Franco <hiago.franco@toradex.com>" | ||
265 | RECIPE_MAINTAINER:pn-hwlatdetect = "Alexander Kanavin <alex.kanavin@gmail.com>" | 266 | RECIPE_MAINTAINER:pn-hwlatdetect = "Alexander Kanavin <alex.kanavin@gmail.com>" |
266 | RECIPE_MAINTAINER:pn-i2c-tools = "Anuj Mittal <anuj.mittal@intel.com>" | 267 | RECIPE_MAINTAINER:pn-i2c-tools = "Anuj Mittal <anuj.mittal@intel.com>" |
267 | RECIPE_MAINTAINER:pn-icecc-create-env = "Joshua Watt <JPEWhacker@gmail.com>" | 268 | RECIPE_MAINTAINER:pn-icecc-create-env = "Joshua Watt <JPEWhacker@gmail.com>" |
diff --git a/meta/recipes-support/hwdata/hwdata_0.389.bb b/meta/recipes-support/hwdata/hwdata_0.389.bb new file mode 100644 index 0000000000..8ab455cd2e --- /dev/null +++ b/meta/recipes-support/hwdata/hwdata_0.389.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Hardware identification and configuration data" | ||
2 | DESCRIPTION = "hwdata contains various hardware identification and \ | ||
3 | configuration data, such as the pci.ids and usb.ids databases." | ||
4 | HOMEPAGE = "https://github.com/vcrhonek/hwdata" | ||
5 | SECTION = "System/Base" | ||
6 | |||
7 | LICENSE = "GPL-2.0-or-later | XFree86-1.0" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57" | ||
9 | |||
10 | SRC_URI = "git://github.com/vcrhonek/${BPN}.git;branch=master;protocol=https" | ||
11 | SRCREV = "5313a12eb992a354c17fc895c1d69c8c42b09a06" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit allarch | ||
16 | |||
17 | do_configure() { | ||
18 | ${S}/configure --datadir=${datadir} --libdir=${libdir} | ||
19 | } | ||
20 | |||
21 | do_compile[noexec] = "1" | ||
22 | |||
23 | do_install() { | ||
24 | oe_runmake install DESTDIR=${D} | ||
25 | } | ||
26 | |||
27 | FILES:${PN} = "${libdir}/* \ | ||
28 | ${datadir}/* " | ||
29 | |||
30 | BBCLASSEXTEND += "native" | ||