From ce29ce2e47ff1ea5b08084d0bcac2400853f7eba Mon Sep 17 00:00:00 2001 From: Igor Zalatov Date: Fri, 4 Nov 2022 10:02:48 +0300 Subject: [PATCH] Update notes --- en/source-code.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/en/source-code.md b/en/source-code.md index 68c732a..502c374 100644 --- a/en/source-code.md +++ b/en/source-code.md @@ -18,19 +18,21 @@ sudo apt-get install -y automake autotools-dev bc build-essential curl fzf git l git clone --depth=1 https://github.com/OpenIPC/firmware.git cd firmware ``` -Run the commands below for your board and your files will end up in the "output/images" directory + +Run the command below on project root folder for your board and your files will end up in the "output/images" directory ``` -# Example run it on project root folder -# ./building.sh hi3518ev300_ultimate -# +``` + +Examples of rebuilding the Linux kernel, root filesystems and individual packages in our project + +``` BOARD=hi3518ev300_ultimate make br-linux-{dirclean,rebuild} # BOARD=hi3518ev300_ultimate make br-rootfs-{squashfs,tar} # BOARD=hi3518ev300_ultimate make br-vtund-openipc-{dirclean,rebuild} -# ``` -----