Merge pull request #116 from duck2/master

Fix typos
This commit is contained in:
Karol Gugala 2021-01-23 14:44:12 +01:00 committed by GitHub
commit dce2d6859b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@ set it to earlier, for example:
export INSTALL_DIR=~/opt/symbiflow
Select your fpga family:
Select your FPGA family:
.. tabs::
@ -27,7 +27,7 @@ Select your fpga family:
FPGA_FAM="eos-s3"
Next, prepare the enviroment:
Next, prepare the environment:
.. code-block:: bash
:name: conda-prep-env
@ -35,7 +35,7 @@ Next, prepare the enviroment:
export PATH="$INSTALL_DIR/$FPGA_FAM/install/bin:$PATH";
source "$INSTALL_DIR/$FPGA_FAM/conda/etc/profile.d/conda.sh"
Finally, enter your working Conda enviroment:
Finally, enter your working Conda environment:
.. code-block:: bash
:name: conda-act-env

View File

@ -1,8 +1,8 @@
Getting SymbiFlow
=================
This section describe how to install SymbiFlow and setup a fully working
enviroment to later build example desings.
This section describes how to install SymbiFlow and set up a fully working
environment to later build example designs.
Prerequisites
-------------
@ -98,7 +98,7 @@ Select your target FPGA family:
export FPGA_FAM=eos-s3
Next, setup Conda and your system's enviroment:
Next, setup Conda and your system's environment:
.. code-block:: bash
:name: conda-setup
@ -130,7 +130,7 @@ Download architecture definitions:
wget -qO- https://quicklogic-my.sharepoint.com/:u:/p/kkumar/EWuqtXJmalROpI2L5XeewMIBRYVCY8H4yc10nlli-Xq79g?download=1 | tar -xJ -C $INSTALL_DIR/eos-s3/
If the above commands exited without errors, you have successfuly installed and configured your working enviroment.
If the above commands exited without errors, you have successfully installed and configured your working environment.
Build Example Designs
---------------------

View File

@ -1,7 +1,7 @@
Running example designs
========================
This section desribes how to properly connect your board.
This section describes how to properly connect your board.
It also helps you configure and run any other software that is necessary to observe results.
Connecting development boards
@ -10,7 +10,7 @@ Connecting development boards
Arty board
~~~~~~~~~~
#. Connect the board to your computer using the USB cable:
#. Connect the board to your computer using the USB cable
#. Connect the board to your computer using the Ethernet cable
(only if you want to test the LiteX Linux Example)
@ -151,7 +151,7 @@ Prepare SD card
#. Format the SD card by following the `official guide <https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/18842385/How+to+format+SD+card+for+SD+boot>`_.
#. Download and extract pre-built U-boot images
#. Download and extract pre-built U-boot images:
.. code-block:: bash
@ -160,21 +160,21 @@ Prepare SD card
wget -qO- https://github.com/SymbiFlow/symbiflow-xc7z-automatic-tester/releases/download/v1.0.0/uboot-linux-images.zip | bsdtar -xf-
popd
#. Copy U-boot images to the boot mountpoint
#. Copy U-boot images to the boot mountpoint:
.. code-block:: bash
cp uboot-linux-images/boot/* /path/to/mountpoint/boot/
sync
#. Copy Arch Linux to the root mountpoint
#. Copy Arch Linux to the root mountpoint:
.. code-block:: bash
wget -qO- http://de5.mirror.archlinuxarm.org/os/ArchLinuxARM-armv7-latest.tar.gz | sudo tar -xvzC /path/to/mountpoint/root
sync
#. Copy additional files and binaries to the root directory in the Arch Linux filesystem
#. Copy additional files and binaries to the root directory in the Arch Linux filesystem:
.. code-block:: bash
@ -187,7 +187,7 @@ Prepare SD card
.. note::
``/path/to/mountpoint/root`` contains the Arch Linux FileSystem, while ``/path/to/mountpoint/root/root/`` is a directory within the FileSystem itself.
``/path/to/mountpoint/root`` contains the Arch Linux filesystem, while ``/path/to/mountpoint/root/root/`` is a directory within the filesystem itself.
.. warning::