Difference between revisions of "How to get the Geexbox distribution"

From IGEP - ISEE Wiki

Jump to: navigation, search
(Feedback and Contributing)
Line 1: Line 1:
 
'''(work in progress)'''
 
'''(work in progress)'''
  
=== Introduction ===
+
== Overview ==
(todo)
 
  
=== Features ===
+
GeeXboX is a free embedded Linux distribution which aims at turning your computer into a so called HTPC (Home Theater PC) or Media Center. You can use it on a diskless computer, the whole system being loaded in RAM. Some points to note:
* [http://enna.geexbox.org Enna media center]
+
 
 +
* Whole system being loaded in RAM.  
 
* OpenGL|ES acceleration
 
* OpenGL|ES acceleration
 
* DSP-accelerated media playback with GStreamer (work in progress)
 
* DSP-accelerated media playback with GStreamer (work in progress)
* ...
 
  
=== How to build ===
+
This How-To is meant to be a starting point for people to learn install a GeeXboX image for IGEP v2 devices as quickly and easily as possible.
* install mercurial to clone the source tree
+
 
* run '''hg clone http://hg.geexbox.org/geexbox'''
+
== Requirements ==
* edit '''config/options''' and set
+
 
<code>
+
* A GNU/Linux-based host system.
TARGET_ARCH=arm<br>
+
* A SD card
TARGET_CPU=cortex-a8<br>
+
 
SERVICES=yes<br>
+
== Feedback and Contributing ==
XORG_DRIVERS="omapfb"<br>
+
 
PULSEAUDIO=no<br>
+
If you want to contribute to GeeXboX please subscribe to the [http://geexbox.org/en/mailing.html development list] (devel at geexbox.org).
GSTREAMER=yes<br>
+
 
</code>
+
Creating articles in the wiki is a collaborative process, at any point, if you see a mistake you can contribute to this article.
* run '''make flat''' to build the distribution
+
 
 +
Please, use the discussion tab for user comments. This is useful to separate page content and the discussion thereof and also, if you don't want to give normal users the right to edit the page but still want user contributed notes.
 +
 
 +
Editing permissions are restricted to registered users. [http://www.igep.es Register in the main IGEP site] and you will have single sign-on.
 +
 
 +
Consult the [http://www.mediawiki.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
 +
 
 +
There is a set of [[Wiki contribution guidelines]].
 +
 
 +
== References ==
 +
 
 +
* The GeeXboX website ( http://www.geexbox.org )
 +
* The Enna website ( http://enna.geexbox.org )
 +
 
 +
== How to build the development branch ==
 +
 
 +
<span style="color: rgb(255, 0, 0);">'''Note:''' The development branch is where the development work takes place and you should use this if you're after to work with the latest cutting edge developments. It is possible trunk can suffer temporary periods of instability while new features are developed and if this is undesirable we recommend using one of the release branches. '''Use ONLY for development purposes.'''</span>
 +
 
 +
GeeXbox uses Mercurial as a revision control system, so you will install the mercurial package for your host syste. On an Ubuntu-based system this will be done with,
 +
 
 +
$ sudo apt-get install mercurial
 +
 
 +
Now, the first thing you will do is download the sources from Mercurial GeeXboX repository.
 +
 
 +
$ hg clone http://hg.geexbox.org/geexbox
 +
 
 +
Next, enter to geexbox directory and edit with your preferred editor the config/options file. Set
 +
 
 +
TARGET_ARCH=arm
 +
TARGET_CPU=cortex-a8
 +
SERVICES=yes
 +
XORG_DRIVERS="omapfb"
 +
PULSEAUDIO=no
 +
GSTREAMER=yes
 +
DEVTOOLS=yes
 +
 
 +
Finally build the distribution with
 +
 
 +
$ make flat
 +
 
 +
The result will ...
 +
 
 +
== Make a bootable MMC card with GeeXbox ==
  
 
Prepare your MicroSD the following way (and order):
 
Prepare your MicroSD the following way (and order):
Line 31: Line 72:
 
* Copy all other files/dirs to EXT2 partition.
 
* Copy all other files/dirs to EXT2 partition.
  
IGEPv2 detects the boot.ini script which contains all the necessary
+
IGEP v2 detects the boot.ini script which contains all the necessary
 
instructions for the OS to auto-boot.
 
instructions for the OS to auto-boot.
  
=== Feedback and Contributing ===
+
== Annex: Known issues and solutions ==
  
If you want to contribute to GeeXboX please subscribe to the [http://geexbox.org/en/mailing.html development list] (devel at geexbox.org).
+
=== Requested 'dbus-1 >= 1.2.16' but version of dbus is 1.1.20 ===
 +
 
 +
The libnih package fails, libnih is compiled for host and for target so your host system needs at least version 1.2.16 of dbus-1.
 +
 
 +
Distributions affected:
 +
 
 +
* Ubuntu 8.04 LTS (Hardy Heron)
  
Creating articles in the wiki is a collaborative process, at any point, if you see a mistake you can contribute to this article.
+
=== BUILD    alsa make: *** [flat] Error 1 ===
  
Please, use the discussion tab for user comments. This is useful to separate page content and the discussion thereof and also, if you don't want to give normal users the right to edit the page but still want user contributed notes.
+
+ scripts/build alsa-lib
 +
+ scripts/build alsa-utils
 +
+ '[' no = yes ']'
 +
make: *** [flat] Error 1
  
Editing permissions are restricted to registered users. [http://www.igep.es Register in the main IGEP site] and you will have single sign-on.
+
Append to packages/alsa/build
  
Consult the [http://www.mediawiki.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
+
exit 0
  
There is a set of [[Wiki contribution guidelines]].
 
  
 
[[Category:Software distributions|GeeXboX]]
 
[[Category:Software distributions|GeeXboX]]

Revision as of 01:00, 5 June 2010

(work in progress)

Overview

GeeXboX is a free embedded Linux distribution which aims at turning your computer into a so called HTPC (Home Theater PC) or Media Center. You can use it on a diskless computer, the whole system being loaded in RAM. Some points to note:

  • Whole system being loaded in RAM.
  • OpenGL|ES acceleration
  • DSP-accelerated media playback with GStreamer (work in progress)

This How-To is meant to be a starting point for people to learn install a GeeXboX image for IGEP v2 devices as quickly and easily as possible.

Requirements

  • A GNU/Linux-based host system.
  • A SD card

Feedback and Contributing

If you want to contribute to GeeXboX please subscribe to the development list (devel at geexbox.org).

Creating articles in the wiki is a collaborative process, at any point, if you see a mistake you can contribute to this article.

Please, use the discussion tab for user comments. This is useful to separate page content and the discussion thereof and also, if you don't want to give normal users the right to edit the page but still want user contributed notes.

Editing permissions are restricted to registered users. Register in the main IGEP site and you will have single sign-on.

Consult the User's Guide for information on using the wiki software.

There is a set of Wiki contribution guidelines.

References

How to build the development branch

Note: The development branch is where the development work takes place and you should use this if you're after to work with the latest cutting edge developments. It is possible trunk can suffer temporary periods of instability while new features are developed and if this is undesirable we recommend using one of the release branches. Use ONLY for development purposes.

GeeXbox uses Mercurial as a revision control system, so you will install the mercurial package for your host syste. On an Ubuntu-based system this will be done with,

$ sudo apt-get install mercurial

Now, the first thing you will do is download the sources from Mercurial GeeXboX repository.

$ hg clone http://hg.geexbox.org/geexbox

Next, enter to geexbox directory and edit with your preferred editor the config/options file. Set

TARGET_ARCH=arm
TARGET_CPU=cortex-a8
SERVICES=yes
XORG_DRIVERS="omapfb"
PULSEAUDIO=no
GSTREAMER=yes
DEVTOOLS=yes

Finally build the distribution with

$ make flat

The result will ...

Make a bootable MMC card with GeeXbox

Prepare your MicroSD the following way (and order):

  • one FAT32 (type 0B) partition, any size, I took 8MB
  • one EXT2 partition
  • Copy /boot/* (uImage and boot.ini script) to FAT32 partition
  • Copy all other files/dirs to EXT2 partition.

IGEP v2 detects the boot.ini script which contains all the necessary instructions for the OS to auto-boot.

Annex: Known issues and solutions

Requested 'dbus-1 >= 1.2.16' but version of dbus is 1.1.20

The libnih package fails, libnih is compiled for host and for target so your host system needs at least version 1.2.16 of dbus-1.

Distributions affected:

  • Ubuntu 8.04 LTS (Hardy Heron)

BUILD alsa make: *** [flat] Error 1

+ scripts/build alsa-lib
+ scripts/build alsa-utils
+ '[' no = yes ']'
make: *** [flat] Error 1

Append to packages/alsa/build

exit 0