mkfs.jffs2 doesn't like short form of pad option with arg
This commit is contained in:
parent
611b040535
commit
ddcaf1444d
@ -7,9 +7,10 @@
|
||||
JFFS2_OPTS := -e $(strip $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE))
|
||||
|
||||
ifeq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_PAD)),y)
|
||||
JFFS2_OPTS += -p
|
||||
ifneq ($(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE)),0x0)
|
||||
JFFS2_OPTS += $(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE))
|
||||
JFFS2_OPTS += --pad=$(strip $(BR2_TARGET_ROOTFS_JFFS2_PADSIZE))
|
||||
else
|
||||
JFFS2_OPTS += -p
|
||||
endif
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user