aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual/adt-prepare.xml
blob: 173314157707c7ceff30e97446108f694beb2653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<chapter id='adt-prepare'>

<title>Preparing to Use the Application Development Toolkit (ADT)</title>

<para>
    In order to use the ADT it must be installed, the environment setup script must be 
    sourced, and the kernel and filesystem image specific to the target architecture must exist.  
    This section describes how to install the ADT, set up the environment, and provides 
    some reference information on kernels and filesystem images.
</para>

<section id='installing-the-adt'>
    <title>Installing the ADT</title>
    <para>
        You can install the ADT three ways.  
        However, we recommend configuring and running the ADT Installer script.  
        Running this script automates much of the process for you.  
        For example, the script allows you to install the QEMU emulator and 
        user-space NFS, define which root filesystem profiles to download, 
        and allows you to define the target sysroot location.
    </para>
    <note>
        If you need to generate the ADT tarball you can do so using the following command:
        <literallayout class='monospaced'>
     $ bitbake adt-installer
        </literallayout>
        This command generates the file <filename>adt-installer.tar.bz2</filename>
        in the <filename>../build/tmp/deploy/sdk</filename> directory.
    </note>

    <section id='configuring-and-running-the-adt-installer'>
        <title>Configuring and Running the ADT Installer</title>
        <para>
            The ADT Installer is contained in a tarball that can be built using 
            <filename>bitbake adt-installer</filename>. 
            Yocto Project has a pre-built ADT Installer tarball that you can download 
            from <filename>tmp/deploy/sdk</filename> located in the build directory.
        </para>

        <note>
            You can install and run the ADT Installer tarball in any directory you want.
        </note>

        <para>
            Before running the ADT Installer you need to configure it by editing 
            the <filename>adt-installer.conf</filename> file, which is located in the 
            directory where the ADT Installer tarball was installed.  
            Your configurations determine which kernel and filesystem image are downloaded.  
            The following list describes the variables you can define for the ADT Installer.  
            For configuration values and restrictions see the comments in  
            the <filename>adt-installer.conf</filename> file:

            <itemizedlist>
                <listitem><para><filename>YOCTOADT_IPKG_REPO</filename> – This area 
                includes the IPKG-based packages and the root filesystem upon which 
                the installation is based.  
                If you want to set up your own IPKG repository pointed to by 
                <filename>YOCTOADT_IPKG_REPO</filename>, you need to be sure that the 
                directory structure follows the same layout as the reference directory 
                set up at <ulink url='http://adtrepo.yoctoproject.org'></ulink>.  
                Also, your repository needs to be accessible through HTTP.
                </para></listitem>
                <listitem><para><filename>YOCTOADT-TARGETS</filename> – The machine 
                target architectures for which you want to set up cross-development 
                environments.
                </para></listitem>
                <listitem><para><filename>YOCTOADT_QEMU</filename> – Indicates whether 
                or not to install the emulator QEMU.
                </para></listitem>
                <listitem><para><filename>YOCTOADT_NFS_UTIL</filename> – Indicates whether 
                or not to install user-mode NFS.  
                If you plan to use the Yocto Eclipse IDE plug-in against QEMU, 
                you should install NFS.
                    <note>
                    To boot QEMU images using our userspace NFS server, you need 
                    to be running portmap or rpcbind. 
                    If you are running rpcbind, you will also need to add the -i 
                    option when rpcbind starts up. 
                    Please make sure you understand the security implications of doing this. 
                    Your firewall settings may also have to be modified to allow 
                    NFS booting to work.
                    </note>
                </para></listitem>
                <listitem><para><filename>YOCTOADT_ROOTFS_&lt;arch&gt;</filename> - The root 
                filesystem images you want to download.
                </para></listitem>
                <listitem><para><filename>YOCTOADT_TARGET_SYSROOT_IMAGE_&lt;arch&gt;</filename> - The 
                root filesystem used to extract and create the target sysroot.
                </para></listitem>
                <listitem><para><filename>YOCTOADT_TARGET_SYSROOT_LOC_&lt;arch&gt;</filename> - The 
                location of the target sysroot that will be set up on the development machine.
                </para></listitem>
            </itemizedlist>
        </para>

        <para>
            After you have configured the <filename>adt-installer.conf</filename> file, 
            run the installer using the following command:
            <literallayout class='monospaced'>
     $ adt_installer
            </literallayout>
        </para>

        <para>
            Once the installer begins to run you are asked whether you want to run in 
            interactive or silent mode.  
            If you want to closely monitor the installation then choose “I” for interactive 
            mode rather than “S” for silent mode.  
            Follow the prompts from the script to complete the installation.
        </para>

        <para>
            Once the installation completes, the cross-toolchain is installed in 
            <filename>/opt/poky/$SDKVERSION</filename>.
        </para>

        <para>
            Before using the ADT you need to run the environment setup script for 
            your target architecture also located in <filename>/opt/poky/$SDKVERSION</filename>.
            See the <xref linkend='setting-up-the-environment'>“Setting Up the Environment”</xref> 
            section for information.
        </para>
    </section>

    <section id='using-an-existing-toolchain-tarball'>
        <title>Using an Existing Toolchain Tarball</title>
        <para>
            If you do not want to use the ADT Installer you can install the toolchain 
            and the sysroot by hand.  
            Follow these steps:
            <orderedlist>
                <listitem><para>Locate and download the architecture-specific toolchain 
                tarball from <ulink url='http://autobuilder.yoctoproject.org/downloads/yocto-1.0'></ulink>.
                Look in the ‘toolchain’ folder and then open up the folder that matches your 
                host development system (i.e. 'i686' for 32-bit machines or 'x86_64' 
                for 64-bit machines).  
                Then, select the toolchain tarball whose name includes the appropriate 
                target architecture.
                <note>
                    If you need to build the toolchain tarball use the 
                    <filename>bitbake meta-toolchain</filename> command after you have 
                    sourced the poky-build-init script.  
                    The tarball will be located in the build directory at 
                    <filename>tmp/deploy/sdk</filename> after the build.
                </note>
                </para></listitem>
                <listitem><para>Make sure you are in the root directory and then expand 
                the tarball.  
                The tarball expands into the <filename>/opt/poky/$SDKVERSION</filename> directory.
                </para></listitem>
                <listitem><para>Set up the environment by sourcing the environment set up 
                script.  
                See the <xref linkend='setting-up-the-environment'>“Setting Up the Environment”</xref>
                for information.
                </para></listitem>
            </orderedlist>
        </para>
    </section>

    <section id='using-the-toolchain-from-within-the-build-tree'>
        <title>Using the Toolchain from Within the Build Tree</title>
        <para>
            A final way of accessing the toolchain is from the build tree.  
            The build tree can be set up to contain the architecture-specific cross toolchain.  
            To populate the build tree with the toolchain you need to run the following command:
            <literallayout class='monospaced'>  
     $ bitbake meta-ide-support
            </literallayout>
        </para>
 
        <para>
            Before running the command you need to be sure that the 
            <filename>conf/local.conf</filename> file in the build directory has 
            the desired architecture specified for the <filename>MACHINE</filename> 
            variable.
            See the <filename>local.conf</filename> file for a list of values you 
            can supply for this variable.  
            You can populate the build tree with the cross-toolchains for more 
            than a single architecture.  
            You just need to edit the <filename>local.conf</filename> file and re-run 
            the BitBake command.
        </para>

        <para>
            Once the build tree has the toolchain you need to source the environment 
            setup script so that you can run the cross-tools without having to locate them.  
            See the <xref linkend='setting-up-the-environment'>“Setting Up the Environment”</xref>
            for information.
        </para>
    </section>
</section>

<section id='setting-up-the-environment'>
    <title>Setting Up the Environment</title>
    <para>
        Before you can use the cross-toolchain you need to set up the environment by 
        sourcing the environment setup script.  
        If you used adt_installer or used an existing ADT tarball to install the ADT,
        then you can find this script in the <filename>/opt/poky/$SDKVERSION</filename>
        directory.  
        If you are using the ADT from a Poky build tree, then look in the build 
        directory in <filename>tmp</filename> for the setup script.
    </para>

    <para> 
        Be sure to run the environment setup script that matches the architecture for 
        which you are developing.  
        Environment setup scripts begin with the string “environment-setup” and include as 
        part of their name the architecture.  
        For example, the environment setup script for a 64-bit IA-based architecture would 
        be the following: 
        <literallayout class='monospaced'>
     /opt/poky/environment-setup-x86_64-poky-linux
        </literallayout>
    </para>
</section>

<section id='kernels-and-filesystem-images'>
    <title>Kernels and Filesystem Images</title>
    <para>
        You will need to have a kernel and filesystem image to boot using your 
        hardware or the QEMU emulator.  
        That means you either have to build them or know where to get them.  
        You can find lots of details on how to get or build images and kernels for your 
        architecture in the "Yocto Project Quick Start" found at 
        <ulink url='http://www.yoctoproject.org/docs/yocto-quick-start/yocto-project-qs.html'></ulink>.
        <note> 
            Yocto Project provides basic kernels and filesystem images for several 
            architectures (x86, x86-64, mips, powerpc, and arm) that can be used 
            unaltered in the QEMU emulator.  
            These kernels and filesystem images reside in the Yocto Project release 
            area - <ulink url='http://autobuilder.yoctoproject.org/downloads/yocto-0.9/'></ulink>
            and are ideal for experimentation within Yocto Project.
        </note>
    </para>
</section>

</chapter>
<!--
vim: expandtab tw=80 ts=4
-->