2003-01-17 05:31:36 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
2005-01-23 12:16:11 +01:00
|
|
|
# Build the jffs2 root filesystem image
|
2003-01-17 05:31:36 +01:00
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
JFFS2_OPTS := -e $(strip $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE))
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_PAD)),y)
|
2005-03-09 18:30:20 +01:00
|
|
|
JFFS2_OPTS += -p
|
2005-01-23 12:16:11 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE)),0x0)
|
|
|
|
JFFS2_OPTS += $(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE))
|
|
|
|
endif
|
|
|
|
endif
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_SQUASH)),y)
|
|
|
|
JFFS2_OPTS += -q
|
|
|
|
endif
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_LE)),y)
|
|
|
|
JFFS2_OPTS += -l
|
|
|
|
endif
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_BE)),y)
|
|
|
|
JFFS2_OPTS += -b
|
|
|
|
endif
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
JFFS2_DEVFILE = $(strip $(subst ",,$(BR2_TARGET_ROOTFS_JFFS2_DEVFILE)))
|
|
|
|
ifneq ($(JFFS2_DEVFILE),)
|
2005-03-09 18:30:20 +01:00
|
|
|
JFFS2_OPTS += -D $(TARGET_DEVICE_TABLE)
|
2005-01-23 12:16:11 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
JFFS2_TARGET := $(subst ",,$(BR2_TARGET_ROOTFS_JFFS2_OUTPUT))
|
2003-01-17 05:31:36 +01:00
|
|
|
|
|
|
|
#
|
2005-01-23 12:16:11 +01:00
|
|
|
# mtd-host is a dependency which builds a local copy of mkfs.jffs2 if it's needed.
|
|
|
|
# the actual build is done from package/mtd/mtd.mk and it sets the
|
|
|
|
# value of MKFS_JFFS2 to either the previously installed copy or the one
|
|
|
|
# just built.
|
2003-01-17 05:31:36 +01:00
|
|
|
#
|
2005-08-08 02:42:49 +02:00
|
|
|
$(JFFS2_TARGET): host-fakeroot makedevs mtd-host
|
2003-01-17 05:31:36 +01:00
|
|
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
|
|
|
@rm -rf $(TARGET_DIR)/usr/man
|
2005-01-23 12:16:11 +01:00
|
|
|
@rm -rf $(TARGET_DIR)/usr/share/man
|
2003-01-17 05:31:36 +01:00
|
|
|
@rm -rf $(TARGET_DIR)/usr/info
|
2005-08-08 08:57:43 +02:00
|
|
|
-/sbin/ldconfig -r $(TARGET_DIR) 2>/dev/null
|
2005-08-04 08:32:52 +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-08-04 08:32:52 +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 \
|
|
|
|
-d $(TARGET_DEVICE_TABLE) \
|
|
|
|
$(TARGET_DIR)
|
|
|
|
# Use fakeroot so mkfs.jffs2 believes the previous fakery
|
|
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
|
|
$(MKFS_JFFS2) \
|
|
|
|
$(JFFS2_OPTS) \
|
|
|
|
-d $(BUILD_DIR)/root \
|
|
|
|
-o $(JFFS2_TARGET)
|
2005-01-23 12:16:11 +01:00
|
|
|
@ls -l $(JFFS2_TARGET)
|
|
|
|
|
|
|
|
JFFS2_COPYTO := $(strip $(subst ",,$(BR2_TARGET_ROOTFS_JFFS2_COPYTO)))
|
|
|
|
|
|
|
|
jffs2root: $(JFFS2_TARGET)
|
|
|
|
ifneq ($(JFFS2_COPYTO),)
|
|
|
|
@cp -f $(JFFS2_TARGET) $(JFFS2_COPYTO)
|
2005-03-09 18:30:20 +01:00
|
|
|
endif
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
jffs2root-source: mtd-host-source
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
jffs2root-clean: mtd-host-clean
|
|
|
|
-rm -f $(JFFS2_TARGET)
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-01-23 12:16:11 +01:00
|
|
|
jffs2root-dirclean: mtd-host-dirclean
|
|
|
|
-rm -f $(JFFS2_TARGET)
|
2003-01-17 05:31:36 +01:00
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2)),y)
|
|
|
|
TARGETS+=jffs2root
|
|
|
|
endif
|