Skip to content

Commit 87352e1

Browse files
committed
docs: rm centos and debian10 refs
Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 79e9702 commit 87352e1

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

docs/user/BuildLocally.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
The `setup.sh` script installs all of the dependencies, including OpenROAD dependencies, if they are not already installed.
66

7-
Supported configurations are: CentOS 7, Ubuntu 20.04, Ubuntu 22.04, Ubuntu 22.04(aarch64), RHEL 8,
8-
Debian 10 and Debian 11.
7+
Supported configurations are: Ubuntu 20.04, Ubuntu 22.04, Ubuntu 22.04(aarch64), RHEL 8, RockyLinux 9 and Debian 11.
98

109
``` shell
1110
git clone --recursive https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts

docs/user/BuildWithPrebuilt.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Using Pre-built Binaries
22

33
## Install Klayout and Yosys
4-
Please ensure the Klayout version (denoted with `klayoutVersion` variable) is consistent with the one used in [DependencyInstaller script](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/etc/DependencyInstaller.sh).
4+
Please ensure the Klayout version (denoted with `klayoutVersion` variable) is consistent with the one used in [DependencyInstaller script](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/etc/DependencyInstaller.sh).
55

66
Instructions for installing:
77
- [Klayout>=0.28.8](https://www.klayout.de/build.html)
88
- [Yosys>=0.39](https://github.com/YosysHQ/oss-cad-suite-build/blob/master/README.md#installation)
99

10-
```{tip} Unfortunately KLayout maintainers do not provide Debian 10/11 compatible packages. You can follow the build-from-sources instruction (Version >=0.25) and Ubuntu 22 instructions [here](https://www.klayout.de/build.html#:~:text=Building%20KLayout%20on%20Linux%20(Version%20%3E%3D%200.25)).
10+
```{tip} Unfortunately KLayout maintainers do not provide Debian 11 compatible packages. You can follow the build-from-sources instruction (Version >=0.25) and Ubuntu 22 instructions [here](https://www.klayout.de/build.html#:~:text=Building%20KLayout%20on%20Linux%20(Version%20%3E%3D%200.25)).
1111
```
1212

1313
## Install OpenROAD
@@ -19,7 +19,7 @@ Thanks to [Precision Innovations](https://precisioninno.com/) for hosting and ma
1919

2020
The following platforms are supported currently:
2121
- Ubuntu 20.04/22.04
22-
- Debian 10/11
22+
- Debian 11
2323

2424
Use the following steps to download:
2525

@@ -29,24 +29,24 @@ Step 2: Download the artifacts for your distribution.
2929

3030
Step 3: Run the install command based on platform use package installer.
3131
For example Ubuntu 20.04 use:
32-
32+
3333
```shell
3434
sudo apt install ./openroad_2.0_amd64-ubuntu20.04.deb
3535
```
3636

3737
## Install Klayout and Yosys
38-
Please ensure the Klayout version (denoted with `klayoutVersion` variable) is consistent with the one used in [DependencyInstaller script](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/etc/DependencyInstaller.sh).
38+
Please ensure the Klayout version (denoted with `klayoutVersion` variable) is consistent with the one used in [DependencyInstaller script](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/etc/DependencyInstaller.sh).
3939

4040
Instructions for installing:
4141
- [Klayout>=0.28.8](https://www.klayout.de/build.html)
4242
- [Yosys>=0.39](https://github.com/YosysHQ/oss-cad-suite-build/blob/master/README.md#installation)
4343

44-
```{tip} Unfortunately KLayout maintainers do not provide Debian 10/11 compatible packages. You can follow the build-from-sources instruction (Version >=0.25) and Ubuntu 22 instructions [here](https://www.klayout.de/build.html#:~:text=Building%20KLayout%20on%20Linux%20(Version%20%3E%3D%200.25)).
44+
```{tip} Unfortunately KLayout maintainers do not provide Debian 11 compatible packages. You can follow the build-from-sources instruction (Version >=0.25) and Ubuntu 22 instructions [here](https://www.klayout.de/build.html#:~:text=Building%20KLayout%20on%20Linux%20(Version%20%3E%3D%200.25)).
4545
```
4646

4747

4848
## Verify Installation
49-
You may clone the OpenROAD-flow-scripts repository non-recursively.
49+
You may clone the OpenROAD-flow-scripts repository non-recursively.
5050

5151
```
5252
git clone https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts.git
@@ -60,7 +60,7 @@ export OPENROAD_EXE=$(command -v openroad)
6060
export YOSYS_EXE=$(command -v yosys)
6161
6262
# only if KLayout is built from source
63-
export LD_LIBRARY_PATH="<klayout_location>/bin:$PATH"
63+
export LD_LIBRARY_PATH="<klayout_location>/bin:$PATH"
6464
6565
yosys -help
6666
openroad -help

docs/user/BuildWithWSL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Windows Subsystem for Linux, or WSL for short is a way for you to mount a Linux-based OS onto your Windows machine, allowing you to build OpenROAD-flow-scripts both locally and via Docker.
33

44
## Install WSL
5-
Instructions to install WSL can be found [here](https://learn.microsoft.com/en-us/windows/wsl/install). You may use any kernel supported, such as: CentOS 7, Ubuntu 20.04, Ubuntu 22.04, RHEL 8, Debian 10 and Debian 11.
5+
Instructions to install WSL can be found [here](https://learn.microsoft.com/en-us/windows/wsl/install). You may use any kernel supported, such as: Ubuntu 20.04, Ubuntu 22.04, RHEL 8, RockyLinux 9, Debian 11.
66

77
We recommend that users follow the Docker build by continuing onto the guide below. However, if you wish to install locally, you may follow the build locally instructions [here](./BuildLocally.md).
88

docs/user/DockerShell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ If you need to use a different Docker image than default, override by using the
3333
environment variable:
3434

3535
```
36-
OR_IMAGE=openroad/flow-centos7-builder:v1234 util/docker_shell make
36+
OR_IMAGE=openroad/flow-ubuntu22.04-builder:v1234 util/docker_shell make
3737
```
3838

39-
If you have built your OpenROAD Docker image using prebuilt binaries,
39+
If you have built your OpenROAD Docker image using prebuilt binaries,
4040
you might want to source custom paths for your modules as follows.
4141

4242
```

0 commit comments

Comments
 (0)