diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2010-10-22 10:47:29 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-27 07:51:03 +0100 |
commit | fd832c02ebfb0ce7e60b317adf8156e41523b3ca (patch) | |
tree | 1fbf9a9b3873c751950ee6fd6011d5085a9c8583 /documentation/yocto-project-qs/yocto-project-qs.xml | |
parent | 86384c162389d3ff31f971d3a585539dbc9ecb4c (diff) | |
download | poky-fd832c02ebfb0ce7e60b317adf8156e41523b3ca.tar.gz |
Added package installation requirements.
Added commands to support package installation of RPM-based host systems
to the example. Input based on feedback from Dirk.
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Diffstat (limited to 'documentation/yocto-project-qs/yocto-project-qs.xml')
-rw-r--r-- | documentation/yocto-project-qs/yocto-project-qs.xml | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml index afffc02717..470118ee33 100644 --- a/documentation/yocto-project-qs/yocto-project-qs.xml +++ b/documentation/yocto-project-qs/yocto-project-qs.xml | |||
@@ -124,8 +124,8 @@ | |||
124 | <title>The Linux Distribution</title> | 124 | <title>The Linux Distribution</title> |
125 | 125 | ||
126 | <para> | 126 | <para> |
127 | While this document assumes a Debian-based host system you can develop in the Yocto Linux environment using many other Linux distributions. | 127 | This document assumes you are running a reasonably current Linux-based host system. |
128 | For Debian-based systems we recommend you use the Ubuntu Release 10.04 or later. | 128 | The examples work for both Debian-based and RPM-based distributions. |
129 | </para> | 129 | </para> |
130 | </section> | 130 | </section> |
131 | 131 | ||
@@ -145,8 +145,27 @@ | |||
145 | </literallayout> | 145 | </literallayout> |
146 | 146 | ||
147 | <para> | 147 | <para> |
148 | The packages you need for an RPM-based host like Fedora are shown in these commands: | ||
149 | </para> | ||
150 | |||
151 | <literallayout class='monospaced'> | ||
152 | $ sudo yum groupinstall "development tools" | ||
153 | $ sudo yum install python m4 make wget curl ftp hg tar bzip2 gzip \ | ||
154 | unzip python-psyco perl texinfo texi2html diffstat openjade \ | ||
155 | docbook-style-dsssl sed docbook-style-xsl docbook-dtds \ | ||
156 | docbook-utils sed bc glibc-devel ccache pcre pcre-devel quilt \ | ||
157 | groff linuxdoc-tools patch linuxdoc-tools cmake help2man \ | ||
158 | perl-ExtUtils-MakeMaker tcl-devel gettext chrpath ncurses apr \ | ||
159 | SDL-devel mesa-libGL-devel mesa-libGLU-devel | ||
160 | </literallayout> | ||
161 | |||
162 | <para> | ||
148 | <emphasis>NOTE:</emphasis> Packages vary in number and name for other Linux distributions. | 163 | <emphasis>NOTE:</emphasis> Packages vary in number and name for other Linux distributions. |
149 | For package requirements on other Linux distributions refer to the information found at <ulink url='http://wiki.openembedded.net/index.php/OEandYourDistro'>http://wiki.openembedded.net/index.php/OEandYourDistro</ulink>. | 164 | The commands here should work. We are interested, though, to learn what works for you. |
165 | You can find more information for package requirements on common Linux distributions | ||
166 | at <ulink url="http://wiki.openembedded.net/index.php/OEandYourDistro"></ulink>. | ||
167 | However, you should be careful when using this information as the information applies | ||
168 | to old Linux distributions that are known to not work with a current Poky install. | ||
150 | </para> | 169 | </para> |
151 | </section> | 170 | </section> |
152 | 171 | ||