e3904a890d
Fixes #8186 Mkfs.jffs2 accepts a --pagesize parameter, which allows specifying the size of the virtual memory page size of the target machine, where the image will be used. (This is the value of the PAGE_SIZE macro in Linux.) In most cases the parameter doesn't need to be set as the default value of 4 kB is usually correct. The parameter was used incorrectly in Buildroot -- it was set to the page size of flash memory chip -- this commit fixes this problem. Now the --pagesize parameter is not used at all (unless the user explicitly chooses to use a custom value during configuration). All existing defconfigs were corrected to match the new configuration variable names. [Peter: reword, add Config.in.legacy handling] Signed-off-by: Michał Leśniewski <mlesniew@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# Build the jffs2 root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
JFFS2_OPTS := -e $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE)
|
|
SUMTOOL_OPTS := $(JFFS2_OPTS)
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_JFFS2_PAD),y)
|
|
ifneq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE)),0x0)
|
|
JFFS2_OPTS += --pad=$(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE))
|
|
else
|
|
JFFS2_OPTS += -p
|
|
endif
|
|
SUMTOOL_OPTS += -p
|
|
endif
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_JFFS2_LE),y)
|
|
JFFS2_OPTS += -l
|
|
SUMTOOL_OPTS += -l
|
|
endif
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_JFFS2_BE),y)
|
|
JFFS2_OPTS += -b
|
|
SUMTOOL_OPTS += -b
|
|
endif
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_JFFS2_USE_CUSTOM_PAGESIZE),y)
|
|
JFFS2_OPTS += -s $(BR2_TARGET_ROOTFS_JFFS2_CUSTOM_PAGESIZE)
|
|
endif
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER),y)
|
|
JFFS2_OPTS += -n
|
|
SUMTOOL_OPTS += -n
|
|
endif
|
|
|
|
ROOTFS_JFFS2_DEPENDENCIES = host-mtd
|
|
|
|
ifneq ($(BR2_TARGET_ROOTFS_JFFS2_SUMMARY),)
|
|
define ROOTFS_JFFS2_CMD
|
|
$(MKFS_JFFS2) $(JFFS2_OPTS) -d $(TARGET_DIR) -o $@.nosummary && \
|
|
$(SUMTOOL) $(SUMTOOL_OPTS) -i $@.nosummary -o $@ && \
|
|
rm $@.nosummary
|
|
endef
|
|
else
|
|
define ROOTFS_JFFS2_CMD
|
|
$(MKFS_JFFS2) $(JFFS2_OPTS) -d $(TARGET_DIR) -o $@
|
|
endef
|
|
endif
|
|
|
|
$(eval $(call ROOTFS_TARGET,jffs2))
|