X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ System Requirements
# then install required packages
sudo apt-get install git build-essential ncurses-dev fakeroot bc

Plus any of the following that apply...
**Plus any of the following that apply...**

* For EV3 or Beaglebone kernel:
* For **EV3** or **Beaglebone** kernel:

sudo apt-get install u-boot-tools lzop gcc-linaro-arm-linux-gnueabihf-5.2

* For Raspberry Pi kernel:
* For **Raspberry Pi** kernel:

sudo apt-get install gcc-arm-rpi-4.9.3-linux-gnueabihf

Expand Down Expand Up @@ -55,12 +55,14 @@ First time kernel build
2. Clone this repo and also the ev3-kernel repo (or rpi-kernel or bb.org-kernel),
then make sure the lego drivers submodule is up to date (we don't always
update the submodule commit in the kernel repo, so you have to pull manually
to get the most recent commits).
to get the most recent commits). Note that we only clone the recent history of
the repository to save time; if you need more than 50 commits, remove the
`--depth` option.

~/work $ git clone git://github.com/ev3dev/ev3dev-buildscripts --branch ev3dev-jessie
~/work $ git clone --recursive git://github.com/ev3dev/ev3-kernel --branch ev3dev-jessie
~/work $ git clone --recursive git://github.com/ev3dev/ev3-kernel --branch ev3dev-jessie --depth 50
~/work $ cd ev3-kernel/drivers/lego
~/work/ev3-kernel/drivers/lego $ git pull origin master
~/work/ev3-kernel/drivers/lego $ git pull origin ev3dev-jessie
~/work/ev3-kernel/drivers/lego $ cd ../../..

3. Change to the `ev3dev-buildscripts` directory and have a look around.
Expand Down
X Tutup