From 869442cd8e6ec591211abc834251d84fffb37ca0 Mon Sep 17 00:00:00 2001 From: Barrett Adair Date: Sat, 26 Dec 2020 13:45:43 -0600 Subject: [PATCH] Add Debian package list to readme --- README.md | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6940d0b..2b6a0bd 100644 --- a/README.md +++ b/README.md @@ -25,19 +25,31 @@ The dependencies are: - aarch64-linux-gnu- toolchain - u-boot tools - mtools +- bison +- flex +- swig +To install the dependencies on a Debian-based system: +```shell-session +$ sudo apt-get install gcc-aarch64-linux-gnu u-boot-tools mtools bison flex swig +``` +Download the projects to build: ```shell-session $ git submodule update --init --recursive -Downloads the projects to build +``` +Build everything needed for the pinephone image: +```shell-session $ make -j8 pine64-pinephone.img.xz -Builds everything needed for the pinephone image... - +``` +Generate only the initramfs for the pinephone: +```shell-session $ make -j8 initramfs-pine64-pinephone.gz -Generate only the initramfs for the pinephone +``` +Generate an image for every supported platform: +```shell-session $ make -j8 all -Generates an image for every supported platform in parallel ``` ### This project is built on: