Skip to content
Snippets Groups Projects
Select Git revision
  • b72b2499c7cca726c8fbc9d27b33e0f65f1cb6cd
  • main default protected
  • feat_dma230_dataio
  • feat_qspi_rom
  • feat_extio
  • feat_dmax4
  • feat_dma350
  • feat_nanosoc_regions
  • feat_accel_decouple
  • dev
  • feat_accel_hash_stream
  • nanosoc-2023
12 results

place_pins.tcl

Blame
  • socrepo-init 831 B
    #-----------------------------------------------------------------------------
    # SoC Labs socsim script to run required simulation
    # A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
    #
    # Contributors
    #
    # David Mapstone (d.a.mapstone@soton.ac.uk)
    #
    # Copyright  2022, SoC Labs (www.soclabs.org)
    #-----------------------------------------------------------------------------
    
    #!/usr/bin/env bash
    
    # Source environment variables for all submodules
    cd $DESIGN_ROOT
    for d in $SOC_TOP_DIR/* ; do
        if [ -e "$d/.git" ]; then
            echo $d
            if [ -f "$d/set_env.sh" ]; then
            # If .git file exists - submodule
                git config -f .gitmodules submodule.$d.branch main
            fi
        fi
    done
    git submodule update --remote --recursive
    git submodule foreach --recursive git checkout main