summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2010-10-22 10:47:29 -0700
committerSaul Wold <Saul.Wold@intel.com>2010-10-24 01:02:39 -0700
commit372186ff623d7a6c5f0e012447e07c4f89bd3da6 (patch)
tree030b9468ca9e0220c576ad93727e321ca6e56fdc
parentc718ef5b60eb38e6431324a0db9e3425eb59a676 (diff)
downloadpoky-372186ff623d7a6c5f0e012447e07c4f89bd3da6.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>
-rw-r--r--documentation/yocto-project-qs/yocto-project-qs.xml25
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