i2c: reduce the number of retries

By default, the kernel will keep trying to send the I2C transaction
three times before giving up. Each of these attempts currently takes
more than 200ms. Even with these timeouts reduced (via the linked DT
change), that's still 50ms × 3 retries × 3 devices, that almost half a
second before we go ahead and react to devices which were unplugged. Not
great.

Change-Id: Iaf8acfec9b4d2b0968bd6017a83d160e22320e97
See-also: https://gerrit.cesnet.cz/c/CzechLight/br2-external/+/7879
1 file changed
tree: 23d3ce5f49b4132f60012b3311b1499ed56757c0
  1. .clang-format
  2. .gitmodules
  3. .zuul.yaml
  4. CMakeLists.txt
  5. Doxyfile.in
  6. LICENSE
  7. LICENSE.md
  8. README.md
  9. ci/
  10. cli/
  11. cmake/
  12. docs/
  13. src/
  14. tests/
  15. yang/
README.md

YANG System management for embedded devices running Linux

Together with sysrepo, this software provides "general system management" of embedded devices. The target platform is anything that runs Linux with systemd. This runs in production on CzechLight SDN DWDM devices.

Health tracking

This component tracks the overal health state of the system, including various sensors, or the state of systemd units. As an operator-friendly LED at the front panel of the appliance shows the aggregated health state.

System management

Firmware can be updated via RAUC, and various aspects of the system's configuration can be adjusted. This includes a firewall, basic network settings, and authentication management.

Supported YANG models

For a full list, consult the yang/ directory in this repository.

Installation

For building, one needs:

The build process uses CMake. A quick-and-dirty build with no fancy options can be as simple as mkdir build && cd build && cmake .. && make && make install.