summaryrefslogtreecommitdiffstats
path: root/package/eudev
Commit message (Collapse)AuthorAgeFilesLines
* eudev: add patch to fix getrandom() system call on ARM64Thomas Petazzoni2016-08-041-0/+64
| | | | | | | | | | | | When the kernel headers in the toolchain don't provide __NR_getrandom, eudev has a predefined set of values. However, the provided value for ARM64 is incorrect, and causes a runtime problem on this architecture when old kernel headers (not providing __NR_getrandom) are used. This commit adds a patch to eudev to fix this issue. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Kevin Hilman <khilman@baylibre.com>
* package/eudev: libgudev is no longer provided by eudevYann E. MORIN2016-07-151-7/+0
| | | | | | | libgudev is now provided by the the eponym package libgudev. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: fix configure optionsYann E. MORIN2016-07-151-7/+8
| | | | | | | | | | | | --enable-libkmod does not exist, but there's --enable-kmod. Also, add --enable-blkid to the list of options, since we already depend on it (from util-linux). Also do not align \ for line continuations. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: use the description on their home pageYann E. MORIN2016-07-151-5/+4
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: explicitly disable rules generator if not wantedYann E. MORIN2016-07-151-0/+2
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: bump version to 3.2Bernd Kuhls2016-06-112-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: link to real homepageBaruch Siach2016-05-261-1/+1
| | | | | | | | The Gentoo wiki page is much more informative than the download directory. This is the official homepage according to top level README.md. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* eudev: Fix configure options for BR2_PACKAGE_EUDEV_RULES_DEV.Ignacy Gawędzki2016-02-241-1/+1
| | | | | | Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/eudev: bump version to 3.1.5Bernd Kuhls2015-11-224-170/+3
| | | | | | | | | | | Remove two patches applied upstream: https://github.com/gentoo/eudev/commit/0e2be0c217028e73073e7f9ccb010cc8b4d756db https://github.com/gentoo/eudev/commit/24ccb6ebc5e13a128aaedd3a2eb52eef3adf6dcd Due to the removed patches autoreconf is not necessary anymore. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* system: add options for /bin /sbin and /lib to be symlinks into /usrYann E. MORIN2015-10-141-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | systemd is increasingly expecting things to live in /usr/bin, /usr/sbin or /usr/lib nad not in /bin, /sbin or /lib. It has inherited those expectations from a Fedora change: https://fedoraproject.org/wiki/Features/UsrMove Note however, that systemd does support /usr being on a separate filesystem; it just expects an initramfs to mount it before the final switchroot over to the actual rootfs. But the traditional use-case for Buildroot is not to boot with an initramfs; although that is totally feasible, that's probably not what is commonly done in the vast majority of cases. However, a lot of packages still install stuff directly into /bin, /sbin or /lib, which systemd may need early-on in the boot process, even before it may have a chance to mount /usr. Even though we can tell systemd, at configure-time, where it should expect programs to be at runtime, it does not make sense to go head-first against an upstream wa^Hill. Add an option so that /bin, /sbin and /lib be symlinks to /usr/bin and /usr/sbin. That option is forcibly enabled when the init system is systemd. Note: we need not handle /lib32 or /lib64, as they already are symlinks to /lib, which means they will automatically be redirected to /usr/lib, as /usr/lib32 and /usr/lib64 already are. Furthermore, this means we're no longer supporting a split-usr setup, so the corresponding configure options have been removed as well for systemd and, when using a merged /usr, for eudev as well. In Buildroot, we decided (with this patch) not to support a split-usr when systemd is used as an init system. This is a design decision, not a systemd issue. Thus the select is with BR2_INIT_SYSTEMD rather than with BR2_PACKAGE_SYSTEMD. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Mike Williams <mike@mikebwilliams.com> Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Cc: Baruch Siach <baruch@tkos.co.il> Tested-by: Mike Williams <mike@mikebwilliams.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: fix install commandRomain Naour2015-09-011-1/+1
| | | | | | | | | The directory $(TARGET_DIR)/etc/init.d/ must exist before installing S10udev init script. Add the missing "-D" option to create the "init.d" directory. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/eudev: fix build with musl + libselinuxRomain Naour2015-08-063-0/+167
| | | | | | | | | | | | | | | | | | | | | Add a patch to disable mallinfo statistics with musl toolchains which doesn't have struct mallinfo. Fixes: selinux-util.c: In function ‘mac_selinux_init’: selinux-util.c:70:25: error: storage size of ‘before_mallinfo’ isn’t known struct mallinfo before_mallinfo, after_mallinfo; Add a second patch for strndupa() which is a GNU extension. Fixes: ./.libs/libudev-core.a(selinux-util.o): In function `mac_selinux_bind': selinux-util.c:(.text+0xd94): undefined reference to `strndupa' collect2: error: ld returned 1 exit status Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Clayton Shotwell <clshotwe@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: add libselinux dependencyRomain Naour2015-07-301-0/+7
| | | | | | Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Clayton Shotwell <clshotwe@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: bump version to 3.1.2Bernd Kuhls2015-07-022-2/+4
| | | | | | | | [Thomas: added locally calculated sha256 hash, as suggested by Yann.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: add enable/disable hwdb optionYegor Yefremov2015-06-152-0/+12
| | | | | | | | | | | | This option enables/disables installation of the eudev hardware database, which provides various extra properties for known devices. Enabling this option adds ~5MB to the rootfs size. The option is enabled by default in order to preserve old behavior. [Peter: extend commit message] Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/eudev: bump version to 3.1.1Bernd Kuhls2015-06-093-48/+2
| | | | | | | | | Removed patch applied upstream: https://github.com/gentoo/eudev/commit/d2aeb8b63dfcb15161c4dd3e80491c844c3f0581#diff-0a5e92f58aded4146365ea36ee8b3c21 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Tested-by: Doug Kehn <rdkehn@yahoo.com Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: fix build with older gccYann E. MORIN2015-04-041-0/+46
| | | | | | | | | | | | | | | Initialisers for anonymous unions/structs are unknown to gcc-4.5, still widely used. Fixes: http://autobuild.buildroot.org/results/11e/11ebb926b891862e270b9cb39fd2ed4344b736a8/ http://autobuild.buildroot.org/results/065/065fdef50b1dd57b95ad2b5eda9904a1d0787cdc/ http://autobuild.buildroot.org/results/316/3161eb96da66936e2cb3ec6aa5547587c3d90338/ http://autobuild.buildroot.org/results/226/2267a204e9eb46bcb621f5bd408deaca98709fc3/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: remove (non-)lfs dependencies and tweaksGustavo Zacarias2015-04-011-3/+2
| | | | | | | | Now that largefile is mandatory removes package dependencies and conditionals. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: bump to version 3.0Gustavo Zacarias2015-03-274-112/+3
| | | | | | | | Drop upstream patches, disable autoreconf (no longer needed) and use upstream hash. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: fix dependency on kernel headers versionAlexey Mednyy2015-03-092-0/+43
| | | | | | | | | | [Thomas: - indicate upstream commit id, as suggested by Baruch. - add SoB of Alexey inside the patch itself. - adjust sequence number to 0003.] Signed-off-by: Alexey Mednyy <swexru@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: avoid patches with identical sequence numbersThomas Petazzoni2015-03-091-0/+0
| | | | | | | | | Since commit 7b4fca6697d9ede0c85e2454eba1c6d13603b5a3 ("eudev: fix mkstemp/mkostemp related build failure"), we had two patches with sequence number 0001, which is not great. This commit fixes that by setting one of the sequence number to 0002. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: we won't miss you, avr32Yann E. MORIN2015-02-141-3/+0
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: fix mkstemp/mkostemp related build failurePeter Seiderer2015-01-241-0/+66
| | | | | | | | | | | | | | | Fixes [1]: ./.libs/libudev-core.a(util.o): In function `mkostemp_safe': util.c:(.text+0x2950): undefined reference to `mkostemp' Do not only protect the call to the mkostemp wrapper mkostemp_safe with HAVE_DECL_MKOSTEMP but also the wrapper itself. [1] http://autobuild.buildroot.net/results/fa6/fa62883de4ada664521ffc47b611ecd2279c0014/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* eudev: really bump versionPeter Korsgaard2015-01-232-15/+17
| | | | | | | | | | | The configure script checks for linux/btrfs.h which is only available since 3.9 (55e301fd57a6239ec: Btrfs: move fs/btrfs/ioctl.h to include/uapi/linux/btrfs.h). It now also uses static_assert which is only available since GCC 4.6, so handle it as well in the legacy patch. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* eudev: bump versionPeter Korsgaard2015-01-232-0/+2
| | | | | | Add hash and update/rename patch for new naming convention. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBSThomas Petazzoni2014-12-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* package/eudev: tweak initscriptGustavo Zacarias2014-10-221-2/+3
| | | | | | | | | | | | | Make the udev initscript trigger in a coherent way, i.e. first set subsystems, then device and then let the whole thing settle. Otherwise for usb_modeswitch udev rules they never kick in since the storage aspect (device) gets claimed first and the switch ignored. Also set the settle timeout to a smaller value than the default 120 seconds to avoid stalling too much. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: add input groupGustavo Zacarias2014-10-221-0/+5
| | | | | | | | It's used by 50-default-udev.rules for input-class devices. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: improve S10udev script for startupPaul Cercueil2014-10-121-1/+2
| | | | | | | | | | | | | | | | | | | | This commit adjusts the S10udev script by: * Using the --action=add option to udevadm trigger. By default, only the "change" events are handled by 'udevadm trigger', which means it doesn't handle all the "device add" events that occured during the boot time, before eudev was started. * Adds a call to 'udevadm settle' to make sure we wait for udev to handle all the events that occured before eudev was started. Both of these change match what the Ubuntu and Debian udev startup scripts are doing. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-041-4/+4
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: Update project URL in Config.inBernd Kuhls2014-07-261-1/+1
| | | | | | | | Suggested by Arnout: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/90060/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: Bump version to 1.9Bernd Kuhls2014-07-171-3/+3
| | | | | | | | | | | - Switch EUDEV_SITE to official upstream: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.9-r1.ebuild?view=markup Github does not carry this current eudev version. - Remove EUDEV_AUTORECONF = yes, tarball contains ./configure Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/eudev: Bump version to 1.7Bernd Kuhls2014-06-111-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Merge branch 'next'Peter Korsgaard2014-06-013-671/+1
|\ | | | | | | | | | | | | Conflicts: package/gdb/Config.in.host Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * eudev: bump versionSagaert Johan2014-05-273-671/+1
| | | | | | | | | | | | | | | | Bump version to v1.6 and drop 2 upstream patches. Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be> Acked-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | packages: make providers declare what they provideYann E. MORIN2014-05-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.org/results/285/2851069d6964aa46d26b4aabe7d84e8c0c6c72ce http://autobuild.buildroot.net/results/9b7/9b7870354d70e27e42d3d9c1f131ab54706bf20e [...] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <jacmet@uclibc.org> Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | eudev: replace "echo -en" with printfMaxime Hadjinlian2014-05-161-2/+2
|/ | | | | | | | printf is POSIX-compliant, echo -e/n is not. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/eudev: use new upstream patch to fix fcntl issueYann E. MORIN2014-04-061-62/+121
| | | | | | | | This is upstream's third attempt at fixing the issue. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev : bump version to 1.5.3Sagaert Johan2014-04-041-1/+1
| | | | | | | Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be> Tested-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Acked-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: only use pragma diagnostics if GCC supports it.Eric Le Bihan2014-04-031-0/+37
| | | | | | | | | | | | | | | | | | | | | | eudev uses GCC pragma diagnostics [1] for some of its logging functions, to circumvent -Wformat-nonliteral. This feature is only available in GCC >= 4.6. The external toolchains for some architectures (PowerPC, SuperH) are based on GCC 4.5. So eudev will not compile when using them. systemd also uses the pragma diagnostics, but its dependency on Linux headers >= 3.8 for the toolchain indirectly forces recent versions of GCC. This workaround enables the pragma diagnostics only when using GCC >= 4.6. This means that if the user uses GCC 4.5 and explicitly sets the options -Werror -Wformat-nonliteral, the build will fail... [1] http://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html#Diagnostic-Pragmas Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: fix redefinition of usec_t and nsec_t.Eric Le Bihan2014-04-031-0/+526
| | | | | | | | | | | | | | usec_t and nsec_t are defined twice (src/libudev/{util.h,path-util.h}). This raises an error when using GCC 4.5, but not with later versions! This patch fixes the issue by gathering the time-related functions and definitions to time-util.[ch], as in upstream systemd. This patch has been sent to upstream. Fixes http://autobuild.buildroot.net/results/060/0605f279abfdfc837f6973f2898ed7ee39f2b8d1/ Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* eudev: bump to version 1.5.2.Eric Le Bihan2014-03-172-2/+87
| | | | | | | | | | | This version of eudev is synced with systemd 210 (notably gudev API changes). It comes with an upstream patch to fix a build error involving <fcntl.h>. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* eudev: disable manpagesGustavo Zacarias2014-03-041-0/+1
| | | | | | | | | | If host-libxslt or some libxslt is around (xsltproc) eudev will try to build manpages with it. Problem is docbook DTDs might not be around and things will break. We want no manpages anyway. Fixes: http://autobuild.buildroot.net/results/c4e/c4e920b16c57e79df979f00cceaea7c0483f043c/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* udev: update udev to new virtual package infra.eric.le.bihan.dev@free.fr2014-02-251-0/+3
| | | | | | | | | | | | | The udev virtual package and its current providers (eudev and systemd) have been updated to use the latest version of virtual package infrastructure. A provider should now select BR2_PACKAGE_HAS_UDEV and well as set a value for BR2_PACKAGE_PROVIDES_UDEV. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* udev: convert to virtual packageeric.le.bihan.dev@free.fr2014-02-121-0/+1
| | | | | | | | | | | | | | | This patch converts udev to a virtual package. For the moment, there is only one provider for the udev features: eudev. Packages meant to provide udev-like features must select the symbol BR2_PACKAGE_HAS_UDEV. Packages depending on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV or BR2_PACKAGE_UDEV have been converted to use the new symbol. [Peter: move legacy symbols under 2014.05] Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* eudev: new packageeric.le.bihan.dev@free.fr2014-02-123-0/+129
eudev is a userspace device management daemon. It is a standalone version, independent from systemd. It is a fork maintained by Gentoo. Features: - No extra configuration options are available: Gudev is build if libglib2 is selected. - No dependency on hwdata as the package uses its own hardware database (as does systemd). eudev 1.3 is in sync with systemd v207. [Peter: add BR2_USE_MMU dependency] Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud