Index: quickstart.md =================================================================== diff -u -rfb1896aa5079ca6afef9e3828e7d0d09ad087fca -ra854c64b28ef53c1d8764cab7f81e170ab205548 --- quickstart.md (.../quickstart.md) (revision fb1896aa5079ca6afef9e3828e7d0d09ad087fca) +++ quickstart.md (.../quickstart.md) (revision a854c64b28ef53c1d8764cab7f81e170ab205548) @@ -1,8 +1,25 @@ -mkdir leahi-distro -cd leahi-distro -sudo curl -o /usr/local/bin/repo http://commondatastorage.googleapis.com/git-repo-downloads/repo -sudo chmod a+x /usr/local/bin/repo -repo init -u git@bitbucket.org:diality-cloud/leahi-distro-manifest.git -repo sync -j8 --no-repo-verify -. ./mkproject.sh -m meta-leahi -p leahi -screen -L time bitbake ely-image-qt +# Diality's Embedded Leahi Build Process + +- ### Create a new directory + ```command + mkdir leahi-distro + cd leahi-distro + ``` +- ### Download repo + ```command + sudo curl -o /usr/local/bin/repo http://commondatastorage.googleapis.com/git-repo-downloads/repo + ``` +- ### Change access primission for the repo + ```command + sudo chmod a+x /usr/local/bin/repo + ``` +- ### Initailize and sync the new repos + ```command + repo init -u git@bitbucket.org:diality-cloud/leahi-distro-manifest.git + repo sync -j8 --no-repo-verify + ``` +- ### Make a new build + ```command + . ./mkproject.sh -m meta-leahi -p leahi + screen -L time bitbake ely-image-qt + ```