Skip to content

Commit

Permalink
changes pdk to pdks
Browse files Browse the repository at this point in the history
  • Loading branch information
mkkassem committed Aug 8, 2022
1 parent e25bf45 commit b7c95ab
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions images/foss-asic-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENV HOME=/headless \
VNC_VIEW_ONLY=false \
DESIGNS=/foss/designs \
TOOLS=/foss/tools \
PDK_ROOT=/foss/pdk
PDK_ROOT=/foss/pdks

ADD ./scripts/ $STARTUPDIR/scripts
RUN find $STARTUPDIR/scripts -name '*.sh' -exec chmod a+x {} +
Expand All @@ -43,7 +43,7 @@ FROM openlane:latest as openlane
FROM klayout:latest as klayout
FROM gtkwave:latest as gtkwave
FROM iverilog:latest as iverilog
FROM pdks-volare:latest as pdk
FROM pdks-volare:latest as pdks
FROM magic:latest as magic
FROM netgen:latest as netgen
FROM riscv-gnu-toolchain-rv32i as rv32i
Expand All @@ -59,7 +59,7 @@ FROM base
#FROM dv as dv


COPY --from=pdk /foss/pdks/ /foss/pdks/
COPY --from=pdks /foss/pdks/ /foss/pdks/
COPY --from=openlane /foss/tools/openlane /foss/tools/openlane
COPY --from=openlane /foss/tools/openlane_tools /foss/tools/openlane_tools
COPY --from=gtkwave /foss/tools/ /foss/tools/
Expand Down
4 changes: 2 additions & 2 deletions images/foss-asic-tools/scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export OPENLANE_ROOT=$TOOLS/openlane

export SAK=$TOOLS/sak/
export EDITOR='gedit'
export PATH=$TOOLS/bin:$SAK:/usr/local/sbin:$PATH
export PATH=$TOOLS/bin:$SAK/bin:/usr/local/sbin:$PATH

#----------------------------------------
# Tool Aliases
Expand All @@ -49,7 +49,7 @@ alias kf='klayout -c $SAK/klayout/tech/sky130A/sky130A.krc -nn $PDK_ROOT/$PD

alias tt='cd /foss/tools'
alias dd='cd /foss/designs'
alias pp='cd /foss/pdk'
alias pp='cd /foss/pdks'
alias destroy='sudo \rm -rf'
alias cp='cp -i'
alias egrep='egrep '
Expand Down
2 changes: 1 addition & 1 deletion images/foss-asic-tools/scripts/miscellaneous.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ yum install -y hub

###############
mkdir -p /foss/designs
mkdir -p /foss/pdk
mkdir -p /foss/pdks

cp -a $TOOLS/sak/openlane/spef_extractor $TOOLS/

Expand Down
2 changes: 1 addition & 1 deletion images/open_pdks/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source scl_source enable devtoolset-8
magic_version=$(ls /foss/tools/magic/ )
export PATH=$PATH:/foss/tools/magic/$magic_version/bin/

export PDK_ROOT=/foss/pdk
export PDK_ROOT=/foss/pdks

cd $PDK_ROOT
git clone ${REPO_URL} ${NAME}
Expand Down
2 changes: 1 addition & 1 deletion images/skywater-pdk.not-included/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG REPO_URL
ARG REPO_COMMIT
ARG NAME

ENV PDK_ROOT=/foss/pdk
ENV PDK_ROOT=/foss/pdks

COPY corners/corners.yml /foss/pdk/corners.yml
COPY corners/make_timing.py /foss/pdk/make_timing.py
Expand Down

0 comments on commit b7c95ab

Please sign in to comment.