Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: intel/igsc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: V0.9.2
Choose a base ref
...
head repository: intel/igsc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: V0.9.4
Choose a head ref
  • 15 commits
  • 21 files changed
  • 3 contributors

Commits on Jul 25, 2024

  1. igsc: ci: fix-up codespell configuration

    1. Add all ignored words to .codespellrc and remove
    .codespell-allowlist, to simplify the configuration.
    2. Remove useless warnings as skipped binary files
    3. Adjust ignored files list, don't scan metee library
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    5fcae7c View commit details
    Browse the repository at this point in the history
  2. igsc: doc: fix typos in api documenation

    Fix typos in api documenation.
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    228d5e1 View commit details
    Browse the repository at this point in the history
  3. igsc: lib: fix typoes in the library

    Fix small typos in the library.
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    6ad890b View commit details
    Browse the repository at this point in the history
  4. igsc: conan: fix typo in conan.cmake

    Fix typo in conan.cmake
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    dcaa628 View commit details
    Browse the repository at this point in the history
  5. igsc: lib: add soc4 hardware sku

    Add SOC4 hardware sku.
    Remove DG2 from hardware sku names, it's no longer used only for DG2.
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    b0b24ba View commit details
    Browse the repository at this point in the history
  6. igsc: lib: fix igsc_get_log_callback_func prototype

    Empty () means any argument, (void) means no argument.
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    2ea6a8a View commit details
    Browse the repository at this point in the history
  7. igsc: ut: check for null before strlen in test_strdup

    strlen() actually may crash on NULL pointer, hence check before.
    Remove redundant implementation of test_strdup in cli_test.c
    
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    d862119 View commit details
    Browse the repository at this point in the history
  8. igsc: bump version to 0.9.3

    Update CHANGELOG.md
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    d22dc41 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2024

  1. igsc: lib: fix device enumeration in linux

    Add check of return values of the udev functions and fail with
    an appropriate error message in case of failure.
    Free the enumeration when it's no longer needed, to prevent memory leak.
    Call udev_device_get_sysname only once, and store the value,
    no need to call it several times.
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    183f9f2 View commit details
    Browse the repository at this point in the history
  2. igsc: cli: print error message when device iterator failed

    Print an error message in case of device iterator failure
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    f9680de View commit details
    Browse the repository at this point in the history
  3. igsc: lib: implement read firmware status register library API

    Implement read firmware status register library API.
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    4d09608 View commit details
    Browse the repository at this point in the history
  4. igsc: cli: implement read firmware status register in cli

    Implement read firmware status register cli option:
    igsc status <index> [--device <dev>]
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    0d74851 View commit details
    Browse the repository at this point in the history
  5. igsc: lib: don't suppress metee error messages in debug mode

    Don't suppress metee error messages in debug mode.
    
    Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    ausyskin authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    23de4e6 View commit details
    Browse the repository at this point in the history
  6. igsc: lib: add timestamps to logs

    Add timestamps to logs. Retrieve the time using
    locatime() standard library function.
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    3b99a91 View commit details
    Browse the repository at this point in the history
  7. igsc: bump version to 0.9.4

    Update CHANGELOG.md
    
    Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com>
    Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
    vlubart authored and Tomas Winkler committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    fbaa86a View commit details
    Browse the repository at this point in the history
Loading