207294ffa9
The makedevs package is a fork of the makedevs tool from busybox. It is
part of the Buildroot infrastructure, not something that should be used
on the target. It something like this is needed on the target, upstream
busybox should be used. And if one of the Buildroot-specific features
is needed, then that feature should be upstreamed to busybox.
Besides, there were already two things wrong with the target package:
- it didn't take into account the overlap with busybox (no depends on
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS, no dependency on busybox);
- it didn't take into account the libcap feature.
The target package was introduced more or less accidentally in 81cd9d45
where the intention was to make it more similar to other packages.
So, kill it with fire.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
762 B
Makefile
28 lines
762 B
Makefile
################################################################################
|
|
#
|
|
# makedevs
|
|
#
|
|
################################################################################
|
|
|
|
MAKEDEVS_LICENSE = GPLv2
|
|
|
|
HOST_MAKEDEVS_CFLAGS = $(HOST_CFLAGS)
|
|
HOST_MAKEDEVS_LDFLAGS = $(HOST_LDFLAGS)
|
|
|
|
ifeq ($(BR2_ROOTFS_DEVICE_TABLE_SUPPORTS_EXTENDED_ATTRIBUTES),y)
|
|
HOST_MAKEDEVS_DEPENDENCIES += host-libcap
|
|
HOST_MAKEDEVS_CFLAGS += -DEXTENDED_ATTRIBUTES
|
|
HOST_MAKEDEVS_LDFLAGS += -lcap
|
|
endif
|
|
|
|
define HOST_MAKEDEVS_BUILD_CMDS
|
|
$(HOSTCC) $(HOST_MAKEDEVS_CFLAGS) package/makedevs/makedevs.c \
|
|
-o $(@D)/makedevs $(HOST_MAKEDEVS_LDFLAGS)
|
|
endef
|
|
|
|
define HOST_MAKEDEVS_INSTALL_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/makedevs $(HOST_DIR)/usr/bin/makedevs
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|