Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.1 KB

README.md

File metadata and controls

52 lines (30 loc) · 1.1 KB

Minimal OS

Minimal and Snappy

Getting Started

To get started with the Minimal sources, you'll need to get familiar with Git and Repo.

Create the Directories

You will need to set up some directories in your build environment.

To create them run:

mkdir -p ~/bin
mkdir -p ~/minimal

Install the Repository

Enter the following to download the "repo" binary and make it executable:

curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo && chmod a+x ~/bin/repo

You may need to reboot for these changes to take effect. Now enter the following to initialize the repository:

cd ~/minimal

Repositories:

For initializing repo use:

repo init -u https://github.com/MinimalOS/platform_manifest.git -b lp-mr1

Init repo with extra tools (ADT/Eclipse):

repo init -u https://github.com/MinimalOS/platform_manifest.git -b lp-mr1 -g all,-notdefault,tools

sync repo:

repo sync -j$(# of CPUs x2)

Happy Compiling!