From 56db61183334b22f68537baaf048f51f5f525ac1 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 26 Feb 2022 23:36:29 +0100 Subject: [PATCH] Simplify build instructions [ci skip] --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index a52f5f6..090eb78 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,6 @@ I am wondering whether we can run multiple Dexed instances, in order to recreate E.g., to build for Raspberry Pi 4 on a Ubuntu 20.04 build system, you can use the following example. See [`build.yml`](../../tree/main/.github/workflows/build.yml) for complete build steps that create versions for Raspberry Pi 1, 2, 3,and 4 in 32-bit and 64-bit as required. ``` -RPI=4 - git clone https://github.com/probonopd/MiniDexed cd MiniDexed @@ -58,17 +56,8 @@ wget -q https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/bin tar xf gcc-arm-*-*.tar.xz export PATH=$(readlink -f ./gcc-*/bin/):$PATH -# Build circle-stdlib library -cd circle-stdlib/ -./configure -r ${RPI} --prefix "aarch64-none-elf-" -make -j$(nproc) -cd .. - -# Build MiniDexed -cd src -make -j$(nproc) -ls *.img -cd .. +# Build dependencies and MiniDexed +RPI=4 ./build.sh # Get Raspberry Pi boot files cd ./circle-stdlib/libs/circle/boot