mirror of
https://github.com/littlefs-project/littlefs.git
synced 2025-12-01 12:20:02 +00:00
scripts: dbgflags.py: Make SEEK_MODE non-internal
This is still a hack to make the seek _enum_ appear somewhat readable in our dbg _flags_ script. But the previously internal SEEK_MODE was causing all seek flags to be hidden from -l/--list confusingly.
This commit is contained in:
@ -57,7 +57,7 @@ o_UNGRAFT = 0x00800000 # i- File's leaf does not match disk
|
||||
o_UNFLUSH = 0x00400000 # i- File's cache does not match disk
|
||||
|
||||
# File seek flags
|
||||
seek_MODE = 0xffffffff # im Seek mode
|
||||
SEEK_MODE = 0xffffffff # -m Seek mode
|
||||
SEEK_SET = 0 # -^ Seek relative to an absolute position
|
||||
SEEK_CUR = 1 # -^ Seek relative to the current file position
|
||||
SEEK_END = 2 # -^ Seek relative to the end of the file
|
||||
|
||||
Reference in New Issue
Block a user