~aleteoryx/muditaos

ref: a21e02f91e176a35edc2a87208b15710962f0a3c muditaos/board/linux/libiosyscalls/src d---------
2c4dd150 — Wiktor S. Ovalle Correa 4 years ago
[EGD-5927] Redirect access to '/lib' in emulator

Sanitizer was trying to access libraries after all objects
got deleted and hung in a nested bug state.
2d2e4328 — Wiktor S. Ovalle Correa 4 years ago
[EGD-5900] Fix filesystem performance issue (Linux)

Make fread/fwrite ignore requested item size
and perform on 8KB blocks
e61a7d2d — Lucjan Bryndza 4 years ago
Merge branch 'EGD-5737-merge-master-to-exp-lbr-fix'
4614846d — Wiktor S. Ovalle Correa 5 years ago
[EGD-5590] Fix boot config procedure

Boot config procedure was outdated and didn't actually work
0cea7488 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5596] Fix fread() handling of EOF

iosyscalls' fread() should interpret zero bytes read as EOF.
dc2059fd — Wiktor S. Ovalle Correa 5 years ago
[EGD-5522] Remount fs R/W for backup or update

After setting vFAT to be read only by default backup,
update and factory reset procedures need to remount R/W
first.
7797a2ea — Jakub Pyszczak 5 years ago
[EGD-5266] Fix test harness

Covers harness issues that occures on experimental branch
due to the new filesystem implementation.
fa223003 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5378] Fix missing condition

Some strange mistake happened during a rebase.
da4ed4e2 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5378] Add informative message before aborting iosyscalls

This fix gives basic information about missing syscalls
before aborting from libiosyscalls preload.
af960b6f — Lucjan Bryndza 5 years ago
[EGD-5146] Add read LFS block size from part

Add littlefs block size from partition bootable offset
7d06115f — Wiktor S. Ovalle Correa 5 years ago
[EGD-5318] Fix coding style in board/

Code style check was disabled for board/ subfolder.
This commit fixes coding and enables style check
for this folder.
dca37deb — Wiktor S. Ovalle Correa 5 years ago
[EGD-5297] Fix Release build on linux

Some minor warnings were preventing us from completing
Release build of Linux emulator.
dcc72e0b — Lucjan Bryndza 5 years ago
[EGD-5332] Fix heap size and other merge fixes

After merge with master we are unable to run any application
It was caused by the insufficent heap size
6b386720 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5289] Fix VFS folder mapping in emulator

Folder filtering prevented us from accessing /sys folder
of VFS image. This fix redirects all /sys references to
the image by default, requiring us to explicitly specify
all paths we want to redirect to Linux fs.
f51a1e52 — Jakub Pyszczak 5 years ago
[EGD-5248] Add statvfs to the libiosyscall library

Added support for statvfs in the libiosyscall library.
It is needed in service desktop implementation.
165788e1 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5139] Add some missing POSIX calls

This commit adds interceptions for common POSIX calls.
Issue [EGD-4551] has shown that some calls can be made from
stdlibc++ that we didn't trace or intercept so far. Our goal
here is to improve our POSIX coverage.
5bc3a96d — Wiktor S. Ovalle Correa 5 years ago
[EGD-4551] Add missing read() interception

Fix error caused by libstdc++ passing our fd to native read()
e8d1fd23 — Wiktor S. Ovalle Correa 5 years ago
[EGD-5177] Change iosyscalls code style

This commit is part of libiosyscalls refining task.
Its purpose is to make this code more predictable and
easier to maintain (as well as fixing some minor bugs).
6f3a6b4f — Lucjan Bryndza 5 years ago
[EGD-5199] Add support for mount umount

Add support for mount umount in the libiosyscall library
due to planning to use ro fatfs and remount to rw only
for update purposes.

Signed-off-by: Lucjan Bryndza <lucjan.bryndza@mudita.com>
a92f163a — Wiktor S. Ovalle Correa 5 years ago
[EGD-5137] Change iosyscalls symbols

Move iosyscalls symbols to a separate namespace `_iosys_*`

This helps us avoid accidentally overriding library calls
which are not exported as symbols.
Next