forked from xbmc/xbmc
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
TOC | ||
1. Introduction | ||
2. Installing and setting up the buildroot environment | ||
|
||
----------------------------------------------------------------------------- | ||
1. Introduction | ||
----------------------------------------------------------------------------- | ||
|
||
For developemnt you can use a customized buildroot to produce a small | ||
raspberrypi system image which is used to boot the raspberrypi and as | ||
crosscompile environment. | ||
|
||
----------------------------------------------------------------------------- | ||
2. Installing and setting up the buildroot environment | ||
----------------------------------------------------------------------------- | ||
|
||
Create a top level directory where you checkout xbmc and buildroot. | ||
|
||
For example : | ||
|
||
mkdir /opt/xbmc-raspberrypi | ||
cd /opt/xbmc-raspberrypi | ||
|
||
Checkout xbmc : | ||
|
||
git clone https://github.com/xbmc/xbmc.git | ||
|
||
Checkout buildroot : | ||
|
||
git clone https://github.com/huceke/buildroot-rbp.git | ||
|
||
cd /opt/xbmc-raspberrypi/buildroot-rbp | ||
|
||
Follow the instroctions in README.rbp how to build the system and xbmc. | ||
|