2005-02-09 17:06:06 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# tar to archive target filesystem
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2005-12-10 15:40:45 +01:00
|
|
|
TAR_OPTS := $(strip $(subst ",, $(BR2_TARGET_ROOTFS_TAR_OPTIONS)))
|
|
|
|
#"
|
2005-08-08 09:53:10 +02:00
|
|
|
tarroot: host-fakeroot makedevs $(STAGING_DIR)/fakeroot.env
|
2005-02-09 17:06:06 +01:00
|
|
|
-@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
|
2005-08-08 08:57:43 +02:00
|
|
|
-/sbin/ldconfig -r $(TARGET_DIR) 2>/dev/null
|
2005-06-24 09:31:17 +02:00
|
|
|
# Use fakeroot to pretend all target binaries are owned by root
|
2005-08-08 08:57:43 +02:00
|
|
|
-$(STAGING_DIR)/usr/bin/fakeroot \
|
2005-06-24 09:31:17 +02:00
|
|
|
-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 \
|
2005-08-04 08:32:52 +02:00
|
|
|
-d $(TARGET_DEVICE_TABLE) \
|
2005-06-24 10:48:06 +02:00
|
|
|
$(TARGET_DIR)
|
2005-08-04 08:32:52 +02:00
|
|
|
# Use fakeroot so tar believes the previous fakery
|
2005-06-24 09:31:17 +02:00
|
|
|
$(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) .
|
2005-02-09 17:06:06 +01:00
|
|
|
|
|
|
|
tarroot-source:
|
|
|
|
|
|
|
|
tarroot-clean:
|
|
|
|
|
|
|
|
tarroot-dirclean:
|
2005-02-10 04:06:39 +01:00
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_TAR)),y)
|
|
|
|
TARGETS+=tarroot
|
|
|
|
endif
|