F11 for XO-1: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
DanielDrake (talk | contribs) No edit summary |
||
(43 intermediate revisions by 13 users not shown) | |||
Line 1: | Line 1: | ||
This page once was the home for the efforts to get Fedora 11 running on the XO-1 hardware, following in the footsteps of [[F11 for 1.5]]. Since that time, the work was completed and formalized into several OLPC OS releases known as the 10.1 series (for XO-1, starting at 10.1.2). For more information, see '''[[Releases]]'''. |
|||
OLPC is developing a new [[Fedora]] based XO operating system for both the [[XO-1]] and the [[XO-1.5]], see ([[F11 for 1.5]]) for the [[XO-1.5]] hardware revision. It includes various improvements and modernizations over the last released version ([[Release notes/8.2.1|release 8.2.1]] on 2009-05-13) for the [[XO-1]] hardware shipped to many [[deployments]] and [[G1G1]] donors. |
|||
== Community-developed builds == |
|||
The builds for the [[XO-1]] are maintained by Steven M. Parrish |
|||
The builds for the [[XO-1.5]] are maintained by Chris Ball & Daniel Drake. |
|||
=== Current release: OS8 === |
|||
This build was released October 15th, 2009 and includes: |
|||
Updates to insure that all Sugar Activities are compatible with release 0.84 of Sugar. |
|||
Fix a problem in the repository definitions which caused "yum updates" to fail. |
|||
A new kernel plus numerous package updates. |
|||
Replaces Firefox with Midori for web browsing. |
|||
Builds can be downloaded [http://dev.laptop.org/~smparrish/XO-1/builds/OS8 here]. |
|||
The usual cautions apply: |
|||
* This is development code |
|||
* You will need to request a [[developer key]] |
|||
* You need to know how to issue firmware commands ([[OFW FAQ]] is one starting point) |
|||
* There will be bugs! |
|||
==== Installation instructions==== |
|||
At the firmware prompt, use <tt>copy-nand</tt> to install os8.img with os8.crc, '''overwriting your XO-1's files'''. |
|||
to do so you have to issue the following command at the ok OFW prompt: |
|||
probe-usb copy-nand disk:\osN.img |
|||
where N is the number of the .img you dowloaded and having in mind that your USB key has to have the .crc file in the same location of the .img file. |
|||
You ''may'' be able to use Live USB techniques to create a bootable USB from os8.iso |
|||
=== Earlier builds === |
|||
See http://dev.laptop.org/~dsd/f11-xo1/ |
|||
== Notes on how to create XO-1 builds == |
|||
''People presumably are following these steps to create.'' |
|||
Here's how you might do it: |
|||
Prerequisites: Fedora 11 system, with sudo access and a decent amount of disk space. |
|||
yum install git livecd-tools mtd-utils crcimg |
|||
As your regular user, check out fedora-xo: |
|||
git clone git://dev.laptop.org/projects/fedora-xo |
|||
In [http://dev.laptop.org/git/projects/fedora-xo this git tree]: |
|||
* master branch is currently unused. |
|||
* xo-1.5 branch contains all build scripts for the new OS release for the XO-1.5. |
|||
* xo-1 branch contains all build scripts for the for the XO-1 |
|||
git checkout --track -b xo-1 origin/xo-1 |
|||
As a quick summary of the most important files, |
|||
; olpc-base.ks and olpc-desktop.ks : the [http://fedoraproject.org/wiki/Anaconda/Kickstart kickstart] files used to make the core software image. |
|||
; livecd-creator : processes the core software files to create a .iso image. |
|||
; livecd-iso-to-xo.sh : converts that .iso into an image that can be flashed onto XOs. |
|||
; Makefile : wraps up the whole process. |
|||
The ongoing process will be to synchronize the xo-1 branch with any new changes made to the xo-1.5 branch. Really, there are only a few differences that must be maintained between the 2 branches. You can see these differences with this command: |
|||
git diff 38951c7..xo-1 |
|||
The above command shows the state of the XO-1.5 branch at the point of last synchronization compared to the XO-1 branch. The differences that have to be maintained (for example, geode video driver, jffs2 file-system) can be seen here, but even this was an unclean synchronization and could be made cleaner (there is some "noise" in the diff). |
|||
The next step is to look at all of the recent changes that have been made to xo-1.5 and merge them into xo-1. I would do this by comparing the 2 trees as follows: |
|||
git diff xo-1 origin/xo-1.5 |
|||
Your task is to apply all the hunks of this diff (excluding ones that are specific to the XO-1.5 hardware) so that the output of this command looks similar to (or better than) the output of the earlier diff - i.e. so that the only differences between the 2 branches are the handful of changes that account for the differences in hardware. |
|||
Even in current state (before merging any new changes), the xo-1 branch is ready for building and should produce a bootable build. Here's how you kick off a build: |
|||
mkdir output cache builddir |
|||
cd output |
|||
make -f ../Makefile os5.img |
|||
After some time, the output file "os5.img" will be ready for flashing onto your unlocked XO. |
|||
If you're happy with this process, the next steps are to publish your build by uploading it to a webhost, and then announcing it on the OLPC devel and Fedora-OLPC mailing lists. |
|||
If you are a known community member, OLPC would probably be happy to give you access to machines where you can run these builds from and host the downloads. Otherwise, this is still a possibility but you'd probably first be expected to make and publish a couple of builds on your own. Similarly, it should be possible to get you direct access to commit to the main fedora-xo repository. Once usable builds are being published regularly, you could also take over this wiki page. |
|||
I may have forgotten a few considerations in the above braindump, but if you're interested then the next step is to give it a try and write about any troubles on the devel@lists.laptop.org mailing list, and we'll help you figure it out. -- [[User:DanielDrake]] 2009-07-14 |
|||
[[Category:Build system]] |
|||
[[Category:Builds]] |
Latest revision as of 16:00, 10 February 2011
This page once was the home for the efforts to get Fedora 11 running on the XO-1 hardware, following in the footsteps of F11 for 1.5. Since that time, the work was completed and formalized into several OLPC OS releases known as the 10.1 series (for XO-1, starting at 10.1.2). For more information, see Releases.