diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-27 12:54:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:31:15 +0100 |
commit | 1108bee72ccbabbfb0f20ecf0ea4080dfc6b5ce8 (patch) | |
tree | b369cc3293743030e84c3ab8a9da0a5d73c3efd9 /meta/recipes-core/udev | |
parent | 41f716010aa524f06594d01c284fcf8fbf02526e (diff) | |
download | poky-1108bee72ccbabbfb0f20ecf0ea4080dfc6b5ce8.tar.gz |
eudev: add PACKAGECONFIG for hwdb
Some users may not want the hwdb at all, so add a PACKAGECONFIG option to
disable building it entirely.
(From OE-Core rev: 7006d3084bd4d6aab2ca64d052df3a014abaf813)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/udev')
-rw-r--r-- | meta/recipes-core/udev/eudev_3.1.5.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/udev/eudev_3.1.5.bb b/meta/recipes-core/udev/eudev_3.1.5.bb index ea19ec4138..e42630f5cf 100644 --- a/meta/recipes-core/udev/eudev_3.1.5.bb +++ b/meta/recipes-core/udev/eudev_3.1.5.bb | |||
@@ -32,6 +32,9 @@ EXTRA_OECONF = " \ | |||
32 | --with-rootprefix= \ | 32 | --with-rootprefix= \ |
33 | " | 33 | " |
34 | 34 | ||
35 | PACKAGECONFIG ??= "hwdb" | ||
36 | PACKAGECONFIG[hwdb] = "--enable-hwdb,--disable-hwdb" | ||
37 | |||
35 | do_install_append() { | 38 | do_install_append() { |
36 | install -d ${D}${sysconfdir}/init.d | 39 | install -d ${D}${sysconfdir}/init.d |
37 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev | 40 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev |
@@ -104,4 +107,3 @@ pkg_postinst_eudev-hwdb () { | |||
104 | pkg_prerm_eudev-hwdb () { | 107 | pkg_prerm_eudev-hwdb () { |
105 | rm -f $D${sysconfdir}/udev/hwdb.bin | 108 | rm -f $D${sysconfdir}/udev/hwdb.bin |
106 | } | 109 | } |
107 | |||