From 68482966599c93cedee5b72ee57e21995c56b76e Mon Sep 17 00:00:00 2001 From: lharnaldi <lharnaldi@gmail.com> Date: Wed, 20 Jul 2022 12:31:23 -0300 Subject: [PATCH] Added the README file --- README.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3381e6 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# rp\_ecosystem + +## What is LAGO Ecosystem? + +Lago Ecosystem is a build system for quick prototyping and working with the Zynq SoCs. + +## Quickstart with the [Red Pitaya](http://redpitaya.com) + +### 1. Requirements for Ubuntu 20.04 Focal Fossa + +#### 1.1. Download and install [`Vitis Core Development Kit 2020.2`](https://www.xilinx.com/products/design-tools/vitis.html). + +<!--#### 1.2 Run + +```bash +$ sudo apt-get install curl +$ cd ~/Downloads +$ curl https://raw.githubusercontent.com/lharnaldi/rp_ecosystem/lago/scripts/install_vivado.sh | sudo /bin/bash /dev/stdin +$ sudo ln -s make /usr/bin/gmake # tells Vivado to use make instead of gmake +``` +--> +#### 1.2. Install requirements + +```bash +$ sudo apt-get update + +$ sudo apt-get --no-install-recommends install \ + build-essential git curl ca-certificates sudo \ + libxrender1 libxtst6 libxi6 lib32ncurses5 \ + crossbuild-essential-armhf \ + bc u-boot-tools device-tree-compiler libncurses5-dev \ + libssl-dev qemu-user-static binfmt-support \ + dosfstools parted debootstrap + +$ git clone https://github.com/lagoprojectrp/lago_ecosystem +$ cd lago_ecosystem +``` + +### 2. Install LAGO Linux for Red Pitaya ([Download SD card image](https://mega.nz/file/MlIXyIiL#hFldQIGeu7P3557xQ08-mS_aAookaet5dWj9iWxgx3Q)) + +### 3. Build and run the minimal instrument + +```bash +$ source settings.sh +$ make NAME=led_blinker +``` +### 4. Documentation (in spanish) +You can read the official documentation in the following link-> ([Official documentation](https://mega.nz/file/go5jGaxI#yAPNhnzwa18UFw0HiC4y9pNHfYLi5F2QwN8MDeZ5Lb0)) + -- GitLab