mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
coreutils: handle merged usr folder
For targets prepared with a usr-move, coreutils should not be attempting to move binaries from `usr/bin` to `bin`. Signed-off-by: James Knight <james.knight@rockwellcollins.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
fdab167442
commit
3c943477f6
@ -99,18 +99,24 @@ COREUTILS_CONF_OPTS += --with-openssl=yes
|
|||||||
COREUTILS_DEPENDENCIES += openssl
|
COREUTILS_DEPENDENCIES += openssl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define COREUTILS_POST_INSTALL
|
ifeq ($(BR2_ROOTFS_MERGED_USR),)
|
||||||
|
define COREUTILS_CLEANUP_BIN
|
||||||
# some things go in root rather than usr
|
# some things go in root rather than usr
|
||||||
for f in $(COREUTILS_BIN_PROGS); do \
|
for f in $(COREUTILS_BIN_PROGS); do \
|
||||||
mv -f $(TARGET_DIR)/usr/bin/$$f $(TARGET_DIR)/bin/$$f || exit 1; \
|
mv -f $(TARGET_DIR)/usr/bin/$$f $(TARGET_DIR)/bin/$$f || exit 1; \
|
||||||
done
|
done
|
||||||
|
endef
|
||||||
|
COREUTILS_POST_INSTALL_TARGET_HOOKS += COREUTILS_CLEANUP_BIN
|
||||||
|
endif
|
||||||
|
|
||||||
|
define COREUTILS_CLEANUP
|
||||||
# link for archaic shells
|
# link for archaic shells
|
||||||
ln -fs test $(TARGET_DIR)/usr/bin/[
|
ln -fs test $(TARGET_DIR)/usr/bin/[
|
||||||
# gnu thinks chroot is in bin, debian thinks it's in sbin
|
# gnu thinks chroot is in bin, debian thinks it's in sbin
|
||||||
mv -f $(TARGET_DIR)/usr/bin/chroot $(TARGET_DIR)/usr/sbin/chroot
|
mv -f $(TARGET_DIR)/usr/bin/chroot $(TARGET_DIR)/usr/sbin/chroot
|
||||||
endef
|
endef
|
||||||
|
|
||||||
COREUTILS_POST_INSTALL_TARGET_HOOKS += COREUTILS_POST_INSTALL
|
COREUTILS_POST_INSTALL_TARGET_HOOKS += COREUTILS_CLEANUP
|
||||||
|
|
||||||
# If both coreutils and busybox are selected, the corresponding applets
|
# If both coreutils and busybox are selected, the corresponding applets
|
||||||
# may need to be reinstated by the clean targets.
|
# may need to be reinstated by the clean targets.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user