| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-03-01 | Merge pull request #35 from mmmaisel/cmake | Grzegorz Kostka | |
| CMake: Added option whether to build static or shared library | |||
| 2018-03-01 | Merge pull request #34 from mmmaisel/master | Grzegorz Kostka | |
| Fix: ext4-mkfs and ext4-mbr-write use wrong partition size in case of multiple partitions | |||
| 2018-03-01 | CMake: Added option whether to build static or shared library | Max | |
| 2018-03-01 | ext4-mkfs: Use correct partition size | Max Maisel | |
| 2018-03-01 | ext4-mbr-write: Fixed partition size calculation | Max Maisel | |
| 2018-03-01 | ext4_mkfs: Added UUID parameter to create new filesystems with non-zero UUID | Max Maisel | |
| 2018-03-01 | ext4_mbr: Added "disk_id" parameter to MBR creation function | Max Maisel | |
| 2018-03-01 | ext4_blockdev: Added user data pointer | Max Maisel | |
| 2017-10-20 | Merge pull request #33 from enetor/fseek | Grzegorz Kostka | |
| Use int64_t as offset to ext4_fseek. | |||
| 2017-10-18 | Use int64_t as offset to ext4_fseek. | Fan Deng | |
| This change makes it possible to fseek backwards in fseek. Tested: make test_all | |||
| 2017-10-18 | Merge pull request #32 from enetor/useless-if | Grzegorz Kostka | |
| Remove an unuseful if check in ext4.c. | |||
| 2017-10-17 | Remove an unuseful if check in ext4.c. | Fan Deng | |
| The if check on s_bdevices[i].name is unuseful, as 'name' always evaluates to true: if (s_bdevices[i].name) { ... } This change removes the check to be consistent with the rest of the code (see line 124 and 144). | |||
| 2017-10-08 | Merge pull request #31 from raandoom/assert_release | Grzegorz Kostka | |
| Move function call outside assert() | |||
| 2017-10-08 | move function call outside assert() | raandoom | |
| 2017-07-13 | Fix a compile issue with big endian config & some small issues fixes | branzhu | |
| 2017-07-11 | Suppress gcc 7.xx warnings (fall through in switch statement) | gkostka | |
| 2017-06-30 | ext4_journal: fix not purging enough transactions | Kaho Ng | |
| We have to purge all consecutive transactions that has all its buffers written to persistent location. | |||
| 2017-06-22 | ext4_balloc: fix not creating revoke records correctly | Kaho Ng | |
| We fix ext4_balloc_free_blocks() not creating revoke records correctly according to start block and block count parameter from caller. | |||
| 2017-06-22 | ext4_balloc: fix not invaliding cache correctly | Kaho Ng | |
| We fix ext4_balloc_free_blocks() not invaliding cache correctly according to start block and block count parameter from caller. | |||
| 2017-05-31 | ext4: fix transaction start/stop scopes | Grzegorz Kostka | |
| Remove transaction scope from ext4_generic_open2 method. | |||
| 2017-05-31 | Change lwext4 license to GPL2 | gkostka | |
| Some of the source files are licensed under GPL2. It makes whole lwext4 GPL2 licensed. To use library as a BSD3, GPL licensed source files must be removed first. At this point there are two files licensed under GPL2: * ext4_xattr.c * ext4_extents.c | |||
| 2017-05-20 | ext4_config: add defines allowing disabling xattr and extent modules | gkostka | |
| 2017-05-20 | ext4_dir_idx: make qsort as a default dir idx sort algorithm | gkostka | |
| 2017-05-20 | Make ext4_xattr & ext4_extents GPL licensed | gkostka | |
| 2017-04-19 | ext4: add ext4_inode_exist method | gkostka | |
| 2017-04-19 | toolchain: add toolchain files for new MCUs & simplify makefile | gkostka | |
| 2017-04-19 | ext4_journal: fix error handling in jbd_get_fs | gkostka | |
| 2017-04-05 | Change include type policy | gkostka | |
| Since all headers are ins separate directory, includes could be done by using <> instead of "". | |||
| 2017-04-05 | Name refactiring inside file_windows module | gkostka | |
| 2017-04-05 | Rename ext4_filedev to file_dev | gkostka | |
| 2017-04-05 | Rename io_raw module to more appropriate file_windows | gkostka | |
| 2017-04-05 | Remove unused unpack_images make target | gkostka | |
| 2017-04-05 | Remove prefix patch directory | gkostka | |
| Seems to be redundant. | |||
| 2017-04-05 | Remove 7z archive with test images | gkostka | |
| Now images will be created by fsck.extN tool. | |||
| 2017-03-24 | Merge pull request #22 from branzhu/master | Grzegorz Kostka | |
| Fix issues with big-endian system | |||
| 2017-03-24 | Fix issues with big-endian system | branzhu | |
| 2017-03-08 | Update README.md | Grzegorz Kostka | |
| 2017-02-28 | ext4_xattr: fix access violation if extra_isize is 0 | Kaho Ng | |
| 2017-02-28 | ext4_fs: set i_extra_isize to ext4_sblock::min_extra_isize | Kaho Ng | |
| 2017-02-28 | ext4_inode: deal with i_extra_isize depending on inode size | Kaho Ng | |
| 2017-02-27 | ext4_xattr: fix trying to read EA block even if it is absent | Kaho Ng | |
| 2017-02-21 | ext4_mkfs: add journal node creation support | gkostka | |
| 2017-02-19 | ext4: improve dox documentation style | gkostka | |
| 2017-02-17 | ext4: little style improvements | Grzegorz Kostka | |
| 2017-02-17 | ext4: remove dynamic block cache allocation in ext4_mount | Grzegorz Kostka | |
| 2017-02-17 | Update license file (github badge) | gkostka | |
| 2017-02-17 | ext4: remove block cache parameter from device_register function | gkostka | |
| This parameter is useless since cache is always initialized by malloc. | |||
| 2017-02-17 | Update licence file (comment scope remove) | gkostka | |
| 2017-02-17 | ext4: add block device unregister by name & all methods | gkostka | |
| 2017-02-16 | ext4: remove read-only check in get atime/mtime/ctime/mode/own methods | gkostka | |
