mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
- start to use BR2_HAVE_MANPAGES and BR2_HAVE_INFOPAGES
- always error out if ldconfig for the target fails (was inconsistent..)
This commit is contained in:
parent
3cca2a310d
commit
1afb8226cb
@ -75,9 +75,13 @@ check-tools:
|
|||||||
|
|
||||||
clooproot: cloop check-tools $(IMAGE).cramfs ### cramfsroot
|
clooproot: cloop check-tools $(IMAGE).cramfs ### cramfsroot
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
@rm -rf $(TARGET_DIR)/usr/share/man
|
@rm -rf $(TARGET_DIR)/usr/share/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
|
endif
|
||||||
@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
|
@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
|
||||||
### $(CLOOP_DIR)/create_compressed_fs -q -D target/default/device_table.txt $(TARGET_DIR) $(CLOOP_TARGET)
|
### $(CLOOP_DIR)/create_compressed_fs -q -D target/default/device_table.txt $(TARGET_DIR) $(CLOOP_TARGET)
|
||||||
## mkisofs -r $(TARGET_DIR) | $(CLOOP_DIR)/create_compressed_fs - 65536 > $(CLOOP_TARGET)
|
## mkisofs -r $(TARGET_DIR) | $(CLOOP_DIR)/create_compressed_fs - 65536 > $(CLOOP_TARGET)
|
||||||
|
@ -38,9 +38,13 @@ cpioroot-init:
|
|||||||
|
|
||||||
$(CPIO_BASE): host-fakeroot makedevs cpioroot-init
|
$(CPIO_BASE): host-fakeroot makedevs cpioroot-init
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
-$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
endif
|
||||||
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
||||||
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
||||||
|
@ -50,9 +50,13 @@ CRAMFS_TARGET=$(IMAGE).cramfs
|
|||||||
cramfsroot: host-fakeroot makedevs cramfs
|
cramfsroot: host-fakeroot makedevs cramfs
|
||||||
#-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true;
|
#-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true;
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
-$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
endif
|
||||||
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
|
||||||
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
||||||
|
@ -88,13 +88,17 @@ endif
|
|||||||
|
|
||||||
$(EXT2_BASE): host-fakeroot makedevs genext2fs
|
$(EXT2_BASE): host-fakeroot makedevs genext2fs
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
@rm -rf $(TARGET_DIR)/usr/share/man
|
@rm -rf $(TARGET_DIR)/usr/share/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
|
endif
|
||||||
@test -d $(TARGET_DIR)/usr/share && \
|
@test -d $(TARGET_DIR)/usr/share && \
|
||||||
rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share || \
|
rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share || \
|
||||||
true
|
true
|
||||||
-$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(EXT2_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(EXT2_TARGET))
|
||||||
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
||||||
|
@ -16,9 +16,13 @@ $(INITRAMFS_TARGET) initramfs: host-fakeroot makedevs
|
|||||||
rm -f $(TARGET_DIR)/init
|
rm -f $(TARGET_DIR)/init
|
||||||
ln -s sbin/init $(TARGET_DIR)/init
|
ln -s sbin/init $(TARGET_DIR)/init
|
||||||
-find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
rm -rf $(TARGET_DIR)/usr/man
|
rm -rf $(TARGET_DIR)/usr/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
rm -rf $(TARGET_DIR)/usr/info
|
rm -rf $(TARGET_DIR)/usr/info
|
||||||
-/sbin/ldconfig -r $(TARGET_DIR) 2>/dev/null
|
endif
|
||||||
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
||||||
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
||||||
|
@ -50,11 +50,15 @@ endif
|
|||||||
#
|
#
|
||||||
$(JFFS2_TARGET): host-fakeroot makedevs mtd-host
|
$(JFFS2_TARGET): host-fakeroot makedevs mtd-host
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
@rm -rf $(TARGET_DIR)/usr/share/man
|
@rm -rf $(TARGET_DIR)/usr/share/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
|
endif
|
||||||
@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
|
@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
|
||||||
-$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(JFFS2_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(JFFS2_TARGET))
|
||||||
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
touch $(PROJECT_BUILD_DIR)/.fakeroot.00000
|
||||||
|
@ -45,8 +45,12 @@ SQUASHFS_TARGET:=$(IMAGE).squashfs
|
|||||||
|
|
||||||
squashfsroot: host-fakeroot makedevs squashfs
|
squashfsroot: host-fakeroot makedevs squashfs
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
|
endif
|
||||||
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(SQUASHFS_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(SQUASHFS_TARGET))
|
||||||
|
@ -24,8 +24,12 @@ endif
|
|||||||
|
|
||||||
tarroot: host-fakeroot makedevs
|
tarroot: host-fakeroot makedevs
|
||||||
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
||||||
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/man
|
@rm -rf $(TARGET_DIR)/usr/man
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||||
@rm -rf $(TARGET_DIR)/usr/info
|
@rm -rf $(TARGET_DIR)/usr/info
|
||||||
|
endif
|
||||||
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
$(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null
|
||||||
# Use fakeroot to pretend all target binaries are owned by root
|
# Use fakeroot to pretend all target binaries are owned by root
|
||||||
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user