1. 24 Mar, 2025 3 commits
    • Robert Schmidt's avatar
      Match nvipc.zip through glob · 3f5181d5
      Robert Schmidt authored
      The (existing) Aerial pipeline on devkit uses an older version of nvipc,
      which is upgraded on gracehopper. Use a glob to match them equally,
      which also aligns this code with the corresponding Dockerfile, which
      already uses that glob.
      3f5181d5
    • Robert Schmidt's avatar
      getopt_long() returns int · 9d796fb3
      Robert Schmidt authored
      Use the right type for variable, as getopt_long() returns an int. Using
      char is not a problem on x86, but prevents the return of -1 in case of
      parameter reading end. This led to infinite loops on ARM, which is fixed
      through the variable type change. An additional counter measure (showing
      the problem) would be to print and error out when reading an undefined
      parameter, which is added here as well.
      
      This has been forgotten when making the same change for getopt() in
      cf985460 ("getopt() returns int").
      9d796fb3
    • Robert Schmidt's avatar
      Avoid x86-specific Dockerfiles/enable ARM · 677a904b
      Robert Schmidt authored
      Dockerfiles hardcoded one copy operation to x86; generalize to capture
      ARM as well. Since the target directory cannot have any globs, we need
      to manually check the right directory, then move the file.
      
      Note that this is only necessary since we are forced to switch the
      compiler, as Ubuntu's default gcc-11 does not work with FlexRIC. When
      upgrading to Ubuntu 24, these lines should disappear and asan be
      installed as normal. See commit 94497435 ("Upgrade CI images to
      Ubuntu 22").
      677a904b
  2. 18 Mar, 2025 4 commits
    • Robert Schmidt's avatar
      Use absolute path for copy · 8cbfa7b7
      Robert Schmidt authored
      Local_Cmd forces use to use absolute paths for copy operations (because
      that makes more clear where files are being copied). Use the absolute
      path to avoid the corresponding exception.
      8cbfa7b7
    • Robert Schmidt's avatar
      Correctly express dependency on LOG headers · 252c9db2
      Robert Schmidt authored
      Various libraries in this commit use the log headers (that is the
      direct dependency). The log headers in turn include the T headers
      (transitive dependency). Building on gracehopper with its many cores
      triggers the build of these libraries before T headers have been
      generated.
      
      To resolve this and force the generation of T headers before building
      the libraries, correctly express their dependency on the log headers,
      which in turn ensures that T headers have been generated.
      
      Depending on log_headers is preferrable because it is really the headers
      that we depend on. Using instead e.g., utils, would trigger build of
      source files, that we don't need for these libraries.  This commit is
      part of a larger cleanup that I have that is not merged yet. Follow-up
      work will generalize this in the repo, and ensure that every(!) library
      builds.
      
      We have to add CONFIG_LIB, as the log module has a direct dependency
      onto the configuration module (it uses it). I am not sure why this was
      not relevant before.
      252c9db2
    • Robert Schmidt's avatar
      Add correct T_headers dependencies · 4ed801dc
      Robert Schmidt authored
      T_headers needs to ensure that T headers have actually been created.
      This can be forced by depending on generate_T.
      4ed801dc
    • Robert Schmidt's avatar
      Use getConnection() to allow build on localhost · f7014993
      Robert Schmidt authored
      Depending on the passed IP addr/host name, getConnection() will select
      the right LocalCmd/RemoteCmd, which is better than hardcoded.
      f7014993
  3. 12 Mar, 2025 1 commit
    • Jaroslava Fiedlerova's avatar
      Merge branch 'integration_2025_w10' into 'develop' · 60b0c182
      Jaroslava Fiedlerova authored
      Integration: `2025.w10`
      
      See merge request oai/openairinterface5g!3299
      
      * !3265 Remove some unnecessary extern files
      * !3288 FeedbackDisabled removed from RA
      * !3294 Fix OAI UE uplink_frequency in FDD mode
      * !3282 Use common function to prepare DL PDUs in gNB RA
      * !3290 Fix get_nr_prach_info_from_index() for FDD and long format
      * !3244 Add F1 handover CI test
      * !3292 Ensure clean exit of NR UE
      * !3298 Preventing segmentation fault in print_rrc_meas (if reviewed and CI is OK)
      * !3297 Reset timing_advance on sync/re-sync
      * !3289 use slot type for slots in NR
      60b0c182
  4. 10 Mar, 2025 5 commits
  5. 07 Mar, 2025 8 commits
  6. 06 Mar, 2025 2 commits
  7. 05 Mar, 2025 1 commit
  8. 04 Mar, 2025 3 commits
  9. 03 Mar, 2025 13 commits