package/mdevd: new package
This new package provides mdevd, a small daemon managing kernel hotplug events similar to udevd. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
ef6b272959
commit
87f76483b9
@ -694,6 +694,7 @@ F: package/eudev/
|
|||||||
F: package/execline/
|
F: package/execline/
|
||||||
F: package/hicolor-icon-theme/
|
F: package/hicolor-icon-theme/
|
||||||
F: package/jemalloc/
|
F: package/jemalloc/
|
||||||
|
F: package/mdevd/
|
||||||
F: package/meson/
|
F: package/meson/
|
||||||
F: package/ninja/
|
F: package/ninja/
|
||||||
F: package/pkg-meson.mk
|
F: package/pkg-meson.mk
|
||||||
|
@ -479,6 +479,7 @@ endmenu
|
|||||||
source "package/lvm2/Config.in"
|
source "package/lvm2/Config.in"
|
||||||
source "package/mali-t76x/Config.in"
|
source "package/mali-t76x/Config.in"
|
||||||
source "package/mdadm/Config.in"
|
source "package/mdadm/Config.in"
|
||||||
|
source "package/mdevd/Config.in"
|
||||||
source "package/memtest86/Config.in"
|
source "package/memtest86/Config.in"
|
||||||
source "package/memtester/Config.in"
|
source "package/memtester/Config.in"
|
||||||
source "package/memtool/Config.in"
|
source "package/memtool/Config.in"
|
||||||
|
9
package/mdevd/Config.in
Normal file
9
package/mdevd/Config.in
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
config BR2_PACKAGE_MDEVD
|
||||||
|
bool "mdevd"
|
||||||
|
depends on BR2_USE_MMU # skalibs
|
||||||
|
select BR2_PACKAGE_SKALIBS
|
||||||
|
help
|
||||||
|
mdevd is a small daemon managing kernel hotplug events,
|
||||||
|
similarly to udevd.
|
||||||
|
|
||||||
|
http://skarnet.org/software/mdevd/
|
3
package/mdevd/mdevd.hash
Normal file
3
package/mdevd/mdevd.hash
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Locally generated
|
||||||
|
sha256 302819dceb2400f299ef8f04828a4fe9156d7334e41ce34d61db37fbc2aa7e8f mdevd-0.1.1.0.tar.gz
|
||||||
|
sha256 e5319cb67bd1d896f3b2fa1136034b1b155a6e278ab1c2578a394f758f0034c1 COPYING
|
39
package/mdevd/mdevd.mk
Normal file
39
package/mdevd/mdevd.mk
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# mdevd
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
MDEVD_VERSION = 0.1.1.0
|
||||||
|
MDEVD_SITE = http://skarnet.org/software/mdevd
|
||||||
|
MDEVD_LICENSE = ISC
|
||||||
|
MDEVD_LICENSE_FILES = COPYING
|
||||||
|
MDEVD_INSTALL_STAGING = YES
|
||||||
|
MDEVD_DEPENDENCIES = skalibs
|
||||||
|
|
||||||
|
MDEVD_CONF_OPTS = \
|
||||||
|
--prefix=/usr \
|
||||||
|
--with-sysdeps=$(STAGING_DIR)/usr/lib/skalibs/sysdeps \
|
||||||
|
--with-include=$(STAGING_DIR)/usr/include \
|
||||||
|
--with-dynlib=$(STAGING_DIR)/usr/lib \
|
||||||
|
--with-lib=$(STAGING_DIR)/usr/lib/skalibs \
|
||||||
|
$(if $(BR2_STATIC_LIBS),,--disable-allstatic) \
|
||||||
|
$(SHARED_STATIC_LIBS_OPTS)
|
||||||
|
|
||||||
|
define MDEVD_CONFIGURE_CMDS
|
||||||
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure $(MDEVD_CONF_OPTS))
|
||||||
|
endef
|
||||||
|
|
||||||
|
define MDEVD_BUILD_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define MDEVD_INSTALL_TARGET_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
||||||
|
endef
|
||||||
|
|
||||||
|
define MDEVD_INSTALL_STAGING_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user