mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
xenomai: add support to keep or remove Analogy utilities and libs
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
832ff5c9c0
commit
60d4822052
@ -113,4 +113,10 @@ config BR2_PACKAGE_XENOMAI_RTCAN
|
||||
help
|
||||
This option allows to install the Xenomai RT-CAN utilities.
|
||||
|
||||
config BR2_PACKAGE_XENOMAI_ANALOGY
|
||||
bool "Analogy libs and utils"
|
||||
help
|
||||
This option allows to install the Xenomai Analogy utilities
|
||||
and libraries
|
||||
|
||||
endif
|
||||
|
@ -90,6 +90,19 @@ endef
|
||||
XENOMAI_POST_INSTALL_TARGET_HOOKS += XENOMAI_REMOVE_RTCAN_PROGS
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XENOMAI_ANALOGY),)
|
||||
define XENOMAI_REMOVE_ANALOGY
|
||||
for i in cmd_bits cmd_read cmd_write insn_write \
|
||||
insn_bits insn_read ; do \
|
||||
rm -f $(TARGET_DIR)/usr/xenomai/bin/$$i ; \
|
||||
done
|
||||
rm -f $(TARGET_DIR)/usr/xenomai/sbin/analogy_config
|
||||
rm -f $(TARGET_DIR)/usr/xenomai/lib/libanalogy.*
|
||||
endef
|
||||
|
||||
XENOMAI_POST_INSTALL_TARGET_HOOKS += XENOMAI_REMOVE_ANALOGY
|
||||
endif
|
||||
|
||||
define XENOMAI_ADD_LD_SO_CONF
|
||||
# Add /usr/xenomai/lib in the library search path
|
||||
grep -q "^/usr/xenomai/lib" $(TARGET_DIR)/etc/ld.so.conf || \
|
||||
|
Loading…
Reference in New Issue
Block a user