From: Ricardo Martincoski Date: Sun, 1 Apr 2018 05:08:18 +0000 (-0300) Subject: fs/yaffs2: fix code style X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c90c109cbd629d664a965aa1690c3ef2b90ba02;p=buildroot.git fs/yaffs2: fix code style Rename the .mk to follow the convention. The variables inside it already use the correct name. Signed-off-by: Ricardo Martincoski Signed-off-by: Thomas Petazzoni --- diff --git a/fs/yaffs2/yaffs.mk b/fs/yaffs2/yaffs.mk deleted file mode 100644 index 9cba27af70..0000000000 --- a/fs/yaffs2/yaffs.mk +++ /dev/null @@ -1,13 +0,0 @@ -################################################################################ -# -# Build the yaffs2 root filesystem image -# -################################################################################ - -ROOTFS_YAFFS2_DEPENDENCIES = host-yaffs2utils - -define ROOTFS_YAFFS2_CMD - $(HOST_DIR)/bin/mkyaffs2 --all-root $(TARGET_DIR) $@ -endef - -$(eval $(rootfs)) diff --git a/fs/yaffs2/yaffs2.mk b/fs/yaffs2/yaffs2.mk new file mode 100644 index 0000000000..9cba27af70 --- /dev/null +++ b/fs/yaffs2/yaffs2.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# Build the yaffs2 root filesystem image +# +################################################################################ + +ROOTFS_YAFFS2_DEPENDENCIES = host-yaffs2utils + +define ROOTFS_YAFFS2_CMD + $(HOST_DIR)/bin/mkyaffs2 --all-root $(TARGET_DIR) $@ +endef + +$(eval $(rootfs))