6102f447aa
busybox tar -c" -v"f m.tar libm doesn't work but tar -c -vf n.tar libm does.
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
#############################################################
|
|
#
|
|
# tar to archive target filesystem
|
|
#
|
|
#############################################################
|
|
|
|
TAR_OPTS := $(strip $(subst ",, $(BR2_TARGET_ROOTFS_TAR_OPTIONS)))
|
|
#"
|
|
tarroot: host-fakeroot makedevs $(STAGING_DIR)/fakeroot.env
|
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
|
@rm -rf $(TARGET_DIR)/usr/man
|
|
@rm -rf $(TARGET_DIR)/usr/info
|
|
-/sbin/ldconfig -r $(TARGET_DIR) 2>/dev/null
|
|
# Use fakeroot to pretend all target binaries are owned by root
|
|
-$(STAGING_DIR)/usr/bin/fakeroot \
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
chown -R root:root $(TARGET_DIR)
|
|
# Use fakeroot to pretend to create all needed device nodes
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
$(STAGING_DIR)/bin/makedevs \
|
|
-d $(TARGET_DEVICE_TABLE) \
|
|
$(TARGET_DIR)
|
|
# Use fakeroot so tar believes the previous fakery
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
tar -c$(TAR_OPTS)f $(IMAGE).tar -C $(TARGET_DIR) .
|
|
|
|
tarroot-source:
|
|
|
|
tarroot-clean:
|
|
|
|
tarroot-dirclean:
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_TAR)),y)
|
|
TARGETS+=tarroot
|
|
endif
|