a2c5cb729a
we can mount a zipfile in nuttx use mount command like this: mount -t zipfs -o /data/test.zip /zip The zipfs is a read only file system,The advantage is that it does not occupy additional space when reading the decompressed file. When used, reading and decompression operations are simultaneous. The known disadvantage is that when using seek to read forward, it will reopen and cause slow speed problems. Signed-off-by: anjiahao <anjiahao@xiaomi.com>
19 lines
341 B
Plaintext
19 lines
341 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config FS_ZIPFS
|
|
bool "ZIPFS File System"
|
|
default n
|
|
|
|
if FS_ZIPFS
|
|
|
|
config ZIPFS_SEEK_BUFSIZE
|
|
int "zipfs seek buffer size"
|
|
default 256
|
|
---help---
|
|
this option will influences seek speed
|
|
|
|
endif # FS_ZIPFS
|