diff options
| author | Ricardo Martincoski <ricardo.martincoski@gmail.com> | 2018-04-01 02:08:36 -0300 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-01 08:52:45 +0200 |
| commit | b205420e6ad1f773d8444c4c279ab38fca0012e9 (patch) | |
| tree | 087537fa168dedf6d05cc7deceb35ec6b992bda0 | |
| parent | 79936be11a4ad7f8939a5b8dbe7ef258da7afe1c (diff) | |
| download | buildroot-b205420e6ad1f773d8444c4c279ab38fca0012e9.tar.gz buildroot-b205420e6ad1f773d8444c4c279ab38fca0012e9.zip | |
fs/*/Config.in: fix attributes order
... to follow the convention: type, default, depends on, select, help.
Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | fs/jffs2/Config.in | 6 | ||||
| -rw-r--r-- | fs/tar/Config.in | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/jffs2/Config.in b/fs/jffs2/Config.in index f1703f4edd..208cabaa52 100644 --- a/fs/jffs2/Config.in +++ b/fs/jffs2/Config.in @@ -38,8 +38,8 @@ endchoice config BR2_TARGET_ROOTFS_JFFS2_CUSTOM_EBSIZE hex "Erase block size" - depends on BR2_TARGET_ROOTFS_JFFS2_CUSTOM default 0x20000 + depends on BR2_TARGET_ROOTFS_JFFS2_CUSTOM help Set to erase size of memory @@ -68,8 +68,8 @@ config BR2_TARGET_ROOTFS_JFFS2_PAD config BR2_TARGET_ROOTFS_JFFS2_PADSIZE hex "Pad output size (0x0 = to end of EB)" - depends on BR2_TARGET_ROOTFS_JFFS2_PAD default 0x0 + depends on BR2_TARGET_ROOTFS_JFFS2_PAD help Set to 0x0 to pad to end of erase block. @@ -100,8 +100,8 @@ config BR2_TARGET_ROOTFS_JFFS2_USE_CUSTOM_PAGESIZE config BR2_TARGET_ROOTFS_JFFS2_CUSTOM_PAGESIZE hex "Virtual memory page size" - depends on BR2_TARGET_ROOTFS_JFFS2_USE_CUSTOM_PAGESIZE default 0x1000 + depends on BR2_TARGET_ROOTFS_JFFS2_USE_CUSTOM_PAGESIZE help Set to virtual memory page size of target system (in bytes). This value should match the virtual page size in Linux (i.e. this should have the diff --git a/fs/tar/Config.in b/fs/tar/Config.in index 2116edf143..a4e375c68b 100644 --- a/fs/tar/Config.in +++ b/fs/tar/Config.in @@ -50,8 +50,8 @@ endchoice config BR2_TARGET_ROOTFS_TAR_OPTIONS string "other random options to pass to tar" - depends on BR2_TARGET_ROOTFS_TAR default "" + depends on BR2_TARGET_ROOTFS_TAR help Any other flags you want to pass to tar Refer to tar --help for details |

