Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DpdkTestpmd: Installation path cleanup #3426

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    810c399 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Python: allow --user flag

    mcgov committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    77f9596 View commit details
    Browse the repository at this point in the history
  2. Meson: add Meson lisa tool

    mcgov committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    be2a9e8 View commit details
    Browse the repository at this point in the history
  3. DpdkTestpmd: Refactor Installation Path

    The installer path has grown to be unmaintainable.
    We cover multiple cases:
    -install from pkg manager
    -install from source
       - install from git
       - install from tar
    - (implicit) use already installed version
    
    for multiple targets:
    - debian
       - ubuntu 18.04 special casing
    - suse
    - fedora
    
    and now need to allow all of these scenarios
    for both DPDK and rdma-core (and the linux kernel).
    
    SO... It's time for a refactor.
    
    Commit makes the 'installer' concept object-oriented.
    
    Adds a generic class 'Installer' into common.py
    Adds child class SourceInstall and PackageManagerInstall.
    Adds DpdkSourceInstall and DpdkPackageManagerInstall classes.
    Adds DpdkGitInstall and DpdkTarInstall implementations of the generic
    parent classes.
    mcgov committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    60c6852 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cebb660 View commit details
    Browse the repository at this point in the history