From b593db4bb376b9828568e9438bbb336a1dc94dba Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Wed, 18 May 2022 06:25:40 -0400 Subject: [PATCH 1/4] Update BuildPrerequisites.md --- docs/BuildPrerequisites.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/BuildPrerequisites.md b/docs/BuildPrerequisites.md index 04dda68..fccd240 100644 --- a/docs/BuildPrerequisites.md +++ b/docs/BuildPrerequisites.md @@ -4,7 +4,7 @@ Run the following commands to install build tools required by the PiPedal build. # install CMake sudo apt update - sudo apt install cmake ninja-build + sudo apt install -y cmake ninja-build The PiPedal build process also requires version 12 or later of `node.js`. Type `node --version` to see if you have a version of `node.js` installed already. Otherwise run the following commands as root to install the v14.x lts version of `node.js`: @@ -22,10 +22,10 @@ with Run the following commands to install dependent libraries required by the PiPedal build. sudo apt update - sudo apt install liblilv-dev libboost-dev jackd2 libjack-jackd2-dev libnl-3-dev libnl-genl-3-dev libsystemd-dev catch - sudo apt install libasound2-dev jackd2 uuid-dev - sudo apt install libwebsocketpp-dev authbind - sudo apt install libavahi-client-dev + sudo apt install -y liblilv-dev libboost-dev jackd2 libjack-jackd2-dev libnl-3-dev libnl-genl-3-dev libsystemd-dev catch + sudo apt install -y libasound2-dev jackd2 uuid-dev + sudo apt install -y libwebsocketpp-dev authbind + sudo apt install -y libavahi-client-dev ### Installing Sources From 918e8070b8993d71f150662771aefc7737e71c57 Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Wed, 18 May 2022 06:35:28 -0400 Subject: [PATCH 2/4] Update BuildPrerequisites.md --- docs/BuildPrerequisites.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/BuildPrerequisites.md b/docs/BuildPrerequisites.md index fccd240..cb5b1fe 100644 --- a/docs/BuildPrerequisites.md +++ b/docs/BuildPrerequisites.md @@ -36,6 +36,12 @@ Clone the rerdavies/pipdal package from github. Use the source control tools fro cd ~/src # or whereever you keep your source repositories. git clone https://github.com/rerdavies/pipedal.git +In the project root, run the following commands to initialze and update pipedal submodules + + cd ~/src/pipedal + git submodule init + git submodule update + Run the following command to install and configure React dependencies. cd ~/src/pipedal From 0e61660a3e003ea26eedd78b39985c77a39bfd3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 03:39:20 +0000 Subject: [PATCH 3/4] Bump nokogiri from 1.13.4 to 1.13.6 in /docs Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.4 to 1.13.6. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.4...v1.13.6) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] --- docs/Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index a528550..769b5c6 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -231,9 +231,9 @@ GEM jekyll-seo-tag (~> 2.1) minitest (5.15.0) multipart-post (2.1.1) - nokogiri (1.13.4-aarch64-linux) + nokogiri (1.13.6-aarch64-linux) racc (~> 1.4) - nokogiri (1.13.4-x86_64-linux) + nokogiri (1.13.6-x86_64-linux) racc (~> 1.4) octokit (4.22.0) faraday (>= 0.9) From d9fb48d7e08e3b6b08827c13207f0f6c47c3634d Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Thu, 19 May 2022 09:55:31 -0400 Subject: [PATCH 4/4] Update Installing.md Raspberry Pi OS no longer supports apt-get install of .deb packages. --- docs/Installing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Installing.md b/docs/Installing.md index b21c45a..2fab8eb 100644 --- a/docs/Installing.md +++ b/docs/Installing.md @@ -11,8 +11,10 @@ Install the package by running ``` sudo apt update cd ~/Downloads - sudo apt-get install ./pipedal_0.9.10_arm64.deb + sudo dpkg --install pipedal_0.9.10_arm64.deb ``` +On Raspberry Pi OS, if you have a graphical desktop installed, you can also install package by double-clicking on the downloaded package in the File Manager. + After installing, follow the instructions in [Configuring PiPedal after Installation](Configuring.md). --------