summaryrefslogtreecommitdiffstats
path: root/docs/go.sum
AgeCommit message (Expand)Author
2021-04-20Merge commit '07b8d9466dfb59c429c1b470a0443337bc0aeefe'Bjørn Erik Pedersen
2021-03-21Merge commit '81689af79901f0cdaff765cda6322dd4a9a7ccb3'Bjørn Erik Pedersen
2020-07-13Merge commit '823ce055ed3356da37e9ec4ac70446bdbbaa8de8'Bjørn Erik Pedersen
2020-05-31Merge commit '9e1dcefc5f559944b70d2fa520f6acd5c56a69f2'Bjørn Erik Pedersen
2020-03-31Merge commit 'c494c37a4523fbf2db6274dc87e0877fd5bec24b'Bjørn Erik Pedersen
2020-02-06Merge commit '3c0036805d64fdd8290f1c4a31371780ff3ea365'Bjørn Erik Pedersen
2019-11-11Merge commit 'efc0b1bb6c6564f54d596467dbc6a18cb206954e'Bjørn Erik Pedersen
2019-10-21Merge commit 'b9bd35d72e14932fb6588ff62b90cddef0a060fc' as 'docs'Bjørn Erik Pedersen
2017-06-26Remove the docs submoduleBjørn Erik Pedersen
2017-06-21docs: UpdateBjørn Erik Pedersen
2017-06-21Update docsBjørn Erik Pedersen
2017-06-21Update docsBjørn Erik Pedersen
2017-06-21releaser: Prepare repository for 0.25-DEVBjørn Erik Pedersen
2017-06-21releaser: Update /docs to 0.24 [ci skip]v0.24Bjørn Erik Pedersen
2017-06-21releaser: Bump versions for release of 0.24Bjørn Erik Pedersen
2017-06-21releaser: Update /docs [ci skip]Bjørn Erik Pedersen
2017-06-16releaser: Prepare repository for 0.24-DEVBjørn Erik Pedersen
2017-06-16releaser: Update /docs to 0.23 [ci skip]v0.23Bjørn Erik Pedersen
2017-06-16releaser: Bump versions for release of 0.23Bjørn Erik Pedersen
2017-06-16releaser: Update /docs [ci skip]Bjørn Erik Pedersen
2017-06-14Add docs as submoduleBjørn Erik Pedersen
span class="sd"> - NOR flash with transparent ECC - DataFlash config JFFS2_FS_WBUF_VERIFY bool "Verify JFFS2 write-buffer reads" depends on JFFS2_FS_WRITEBUFFER default n help This causes JFFS2 to read back every page written through the write-buffer, and check for errors. config JFFS2_SUMMARY bool "JFFS2 summary support" depends on JFFS2_FS default n help This feature makes it possible to use summary information for faster filesystem mount. The summary information can be inserted into a filesystem image by the utility 'sumtool'. If unsure, say 'N'. config JFFS2_FS_XATTR bool "JFFS2 XATTR support" depends on JFFS2_FS default n help Extended attributes are name:value pairs associated with inodes by the kernel or by users (see the attr(5) manual page for details). If unsure, say N. config JFFS2_FS_POSIX_ACL bool "JFFS2 POSIX Access Control Lists" depends on JFFS2_FS_XATTR default y select FS_POSIX_ACL help Posix Access Control Lists (ACLs) support permissions for users and groups beyond the owner/group/world scheme. If you don't know what Access Control Lists are, say N config JFFS2_FS_SECURITY bool "JFFS2 Security Labels" depends on JFFS2_FS_XATTR default y help Security labels support alternative access control models implemented by security modules like SELinux. This option enables an extended attribute handler for file security labels in the jffs2 filesystem. If you are not using a security module that requires using extended attributes for file security labels, say N. config JFFS2_COMPRESSION_OPTIONS bool "Advanced compression options for JFFS2" depends on JFFS2_FS default n help Enabling this option allows you to explicitly choose which compression modules, if any, are enabled in JFFS2. Removing compressors can mean you cannot read existing file systems, and enabling experimental compressors can mean that you write a file system which cannot be read by a standard kernel. If unsure, you should _definitely_ say 'N'. config JFFS2_ZLIB bool "JFFS2 ZLIB compression support" if JFFS2_COMPRESSION_OPTIONS select ZLIB_INFLATE select ZLIB_DEFLATE depends on JFFS2_FS default y help Zlib is designed to be a free, general-purpose, legally unencumbered, lossless data-compression library for use on virtually any computer hardware and operating system. See <http://www.gzip.org/zlib/> for further information. Say 'Y' if unsure. config JFFS2_LZO bool "JFFS2 LZO compression support" if JFFS2_COMPRESSION_OPTIONS select LZO_COMPRESS select LZO_DECOMPRESS depends on JFFS2_FS default n help minilzo-based compression. Generally works better than Zlib. This feature was added in July, 2007. Say 'N' if you need compatibility with older bootloaders or kernels. config JFFS2_RTIME bool "JFFS2 RTIME compression support" if JFFS2_COMPRESSION_OPTIONS depends on JFFS2_FS default y help Rtime does manage to recompress already-compressed data. Say 'Y' if unsure. config JFFS2_RUBIN bool "JFFS2 RUBIN compression support" if JFFS2_COMPRESSION_OPTIONS depends on JFFS2_FS default n help RUBINMIPS and DYNRUBIN compressors. Say 'N' if unsure. choice prompt "JFFS2 default compression mode" if JFFS2_COMPRESSION_OPTIONS default JFFS2_CMODE_PRIORITY depends on JFFS2_FS help You can set here the default compression mode of JFFS2 from the available compression modes. Don't touch if unsure. config JFFS2_CMODE_NONE bool "no compression" help Uses no compression. config JFFS2_CMODE_PRIORITY bool "priority" help Tries the compressors in a predefined order and chooses the first successful one. config JFFS2_CMODE_SIZE bool "size" help Tries all compressors and chooses the one which has the smallest result. config JFFS2_CMODE_FAVOURLZO bool "Favour LZO" help Tries all compressors and chooses the one which has the smallest result but gives some preference to LZO (which has faster decompression) at the expense of size. endchoice