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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
|
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<chapter id="platdev">
<title>Platform Development with Poky</title>
<section id="platdev-appdev">
<title>Software development</title>
<para>
Poky supports several methods of software development. You can use the method that is
best for you. This chapter describes each development method.
</para>
<section id="platdev-appdev-external-sdk">
<title>External Development Using the Poky SDK</title>
<para>
The meta-toolchain and meta-toolchain-sdk targets (<link linkend='ref-images'>see
the images section</link>) build tarballs that contain toolchains and
libraries suitable for application development outside of Poky. These tarballs
unpack into the
<filename class="directory">/opt/poky</filename> directory and contain
a setup script (e.g.
<filename>/opt/poky/environment-setup-i586-poky-linux</filename>, which
you can source to initialize a suitable environment. Sourcing these adds the
compiler, QEMU scripts, QEMU binary, a special version of pkgconfig and other
useful utilities to the PATH variable. Variables to assist pkgconfig and
autotools are also set so that, for example, configure can find pre-generated test
results for tests that need target hardware on which to run.
</para>
<para>
Using the toolchain with autotool-enabled packages is straightforward - just pass the
appropriate host option to configure as in the following example:
<literallayout class='monospaced'>
$ ./configure --host=arm-poky-linux-gnueabi
</literallayout>
For other projects it is usually a case of ensuring the cross tools are used:
<literallayout class='monospaced'>
CC=arm-poky-linux-gnueabi-gcc and LD=arm-poky-linux-gnueabi-ld
</literallayout>
</para>
</section>
<section id="using-the-eclipse-and-anjuta-plug-ins">
<title>Using the Eclipse and Anjuta Plug-ins</title>
<para>
Yocto Project supports both Anjuta and Eclipse IDE plug-ins to make developing software
easier for the application developer. The plug-ins provide capability
extensions to the graphical IDE allowing for cross compilation,
deployment and execution of the output in a QEMU emulation session.
Support of these plug-ins also supports cross debugging and
profiling. Additionally, the Eclipse plug-in provides a suite of tools
that allows the developer to perform remote profiling, tracing, collection of
power data, collection of latency data and collection of performance data.
</para>
<section id="the-eclipse-plug-in">
<title>The Eclipse Plug-in</title>
<para>
To use the Eclipse plug-in, a toolchain and SDK built by Poky is required along with
the Eclipse Framework (Helios 3.6).
To install the plug-in you need to be in the Eclipse IDE and select
the following menu:
<literallayout class='monospaced'>
Help -> Install New Software
</literallayout>
Specify the target URL as http://yocto./download (real link needed).
</para>
<para>
If you want to download the source code for the plug-in you can find it in the Poky
git repository, which has a web interface, and is located at
<ulink url="http://git.pokylinux.org/cgit.cgi/eclipse-poky"></ulink>.
</para>
<section id="installing-and-setting-up-the-eclipse-ide">
<title>Installing and Setting up the Eclipse IDE</title>
<para>
If you don't have the Eclipse IDE (Helios 3.6) on your system you need to
download and install it from <ulink url="http://www.eclipse.org/downloads"></ulink>.
Choose the Eclipse Classic, which contains the Eclipse Platform, Java Development
Tools (JDT), and the Plug-in Development Environment.
</para>
<para>
NOTE: Due to the Java Virtual Machine's garbage collection (GC) process the
permanent generation space (PermGen) is not cleaned up. This space is used
to store meta-data descriptions of classes. The default value is set too small
and it could trigger an out of memory error like the following:
<literallayout class='monospaced'>
Java.lang.OutOfMemoryError: PermGen space
</literallayout>
This error causes the applications to hang.
</para>
<para>
To fix this issue you can use the <command>-vmargs</command>
option when you start Eclipse to increase the size of the permenant generation space:
<literallayout class='monospaced'>
Eclipse -vmargs -XX:PermSize=256M
</literallayout>
</para>
</section>
<section id="installing-the-yocto-plug-in">
<title>Installing the Yocto Plug-in</title>
<para>
Once you have the Eclipse IDE installed and configure you need to install the
Yocto plug-in. You do this similar to installing the Eclipse plug-ins in the
previous section.
</para>
<para>
Do the following to install the Yocto plug-in into the Eclipse IDE:
<itemizedlist>
<listitem>Select the "Help -> Install New Software" item.</listitem>
<listitem>In the "Work with:" area click "Add..." and enter the URL for
the Yocto plug-in (we need to supply this URL).</listitem>
<listitem>Finish out the installation of the update similar to any other
Eclipse plug-in.</listitem>
</itemizedlist>
</para>
</section>
<section id="configuring-yocto-eclipse-plug-in">
<title>Configuring Yocto Eclipse plug-in</title>
<para>
To configure the Yocto Eclipse plug-in you need to select the mode and then the
architecture with which you will be working. Start by selecting "Preferences"
from the "Window" menu and then selecting "Yocto SDK".
</para>
<para>
If you normally will use an installed Yocto
SDK (under /opt/poky) select “SDK Root Mode”. Otherwise, if your crosstool chain
and sysroot are within your poky tree, select “Poky Tree Mode”.
If you are in SDK Root Mode you will need to provide your poky tree path, for
example, $<Poky_tree>/build/.
</para>
<para>
Now you need to select the architecture.
Use the drop down list and select the architecture that you’ll be primarily
working against.
For target option, select your typical target QEMU vs External HW. If you
choose QEMU, you’ll need to specify your QEMU kernel file with full path and the
rootfs mount point. Yocto QEMU boots off user mode NFS, Please refer to QEMU
section for how to set it up. (Section TBD)
</para>
<para>
Save all your settings and they become your defaults for every new Yocto project
created using the Eclipse IDE.
</para>
</section>
<section id="using-the-yocto-eclipse-plug-in">
<title>Using the Yocto Eclipse Plug-in</title>
<para>
As an example, this section shows you how to cross-compile a Yocto C autotools
based project, deploy it into QEMU, and then run the debugger against it.
You need to configure the project, trigger <command> autogen.sh</command>, build
the image, start QEMU, and then debug.
</para>
<orderedlist>
<listitem>Creating a Yocto Autotools Based Project Using a Template:
Get to the Wizard selection by selecting the File -> New -> Project
menu. Expand "C/C++" and select "C Project". Click "Next" and select a template
to start with, for example "Hello World ANSI C Project". Complete the steps
to create a new Yocto autotools based project using this template.</listitem>
<listitem>Specify Specific Toolchain Configurations: By default the project
uses the Yocto preferences settings as defined using the procedure in
<link linkend="configuring-yocto-eclipse-plug-in"> the previous section</link>.
If there are any specific setup requirements for the newly created project
you need to reconfigure the Yocto plug-in through the menu selection
Project -> Invoke Yocto Tools -> Reconfigure Yocto. Use this dialogue
to specify specific toolchain and QEMU setups for the project.</listitem>
<listitem>Building the Project: Trigger <command>autogen.sh</command> through
Project -> Reconfigure Project. Then build the project using
Project -> Build.</listitem>
<listitem>Starting QEMU: Use the Run -> External Tools menu and see if there is
a QEMU instance for the desired target. If there is click on the instance
to start QEMU. If your target is not there then click "External Tools
Configuration". You should find an instance of QEMU for your architecture
under the entry under "Program". After the boot completes you are ready to
deploy the image into QEMU.</listitem>
<listitem>Debugging: To bring up your remote debugging configuration in the
right-hand window highlight your project in “Project Explorer”, select
the Run -> Debug Configurations menu item and expand “C/C++ Remote Application”.
Next, select projectname_ gdb_target-poky-linux.
You need to be sure that there is an
entry for the remote target you want to deploy and cross debug with. If there
is no entry then click "New..." to bring up the wizard. Using the wizard
select TCF and enter the IP address of you remote target in the
“Host name:” field. Back in the remote debug configure window,
you need to specify the absolute path for the program on the remote target
in the “Remote Absolute File Path for C/C++ Application” field. By default,
the program deploys into the remote target. If you don't want this then check
“Skip download to target path”. Finally, click "Debug” to start the remote
debugging session.</listitem>
</orderedlist>
</section>
<section id="using-yocto-eclipse-plug-in-remote-tools-suite">
<title>Using Yocto Eclipse plug-in Remote Tools Suite</title>
<para>
Remote tools let you do things like perform system profiling, kernel tracing,
examine power consumption, and so forth. To see and access the remote tools use the
Window -> YoctoTools menu.
</para>
<para>
Once you pick a tool you need to configure it for the remote target. Every tool
needs to have the connection configured. You have to select an existing TCF-based
RSE connection to the remote target. If one does not exist you need to create one
by clicking "New"
</para>
<para>
Here are some specifics about the remote tools:
<itemizedlist>
<listitem>Oprofile: Selecting this tool causes the oprofile-server on the remote
target to launch on the local host machine. To use the oprofile the oprofile-viewer
must be installed on the local host machine and the oprofile-server must be
installed on the remote target.</listitem>
<listitem>lttng: Selecting this tool runs ustrace on the remote target, transfers
the output data back to the local host machine and uses lttv-gui to graphically
display the output. To use this tool the lttv-gui must be installed on the
local host machine. See <ulink url="http://lttng.org/files/ust/manual/ust.html">
</ulink> for information on how to use <command>lttng</command> to trace an
application.
<para>
For "Application" you must supply the absolute path name to the application to
be traced by user mode lttng. For example, typing <command>/path/to/foo"
</command> triggers <command>usttrace /path/to/foo</command> on the
remote target to trace the program <command>/path/to/foo</command>.
</para>
<para>
"Argument" is passed to "usttrace" running on the remote target.
</para>
</listitem>
<listitem>powertop: Selecting this tool runs <command>powertop</command> on the
remote target machine and displays the result in a new view called "powertop".
<para>
"Time to gather data(sec):" is the time passed in seconds before data is
gathered from the remote target for analysis.
</para>
<para>
"show pids in wakeups list:" corresponds to the <command>-p</command>
argument passed to <command>powertop</command>
</para>
</listitem>
<listitem>latencytop and perf: The <command>latencytop</command> identifies
system latency, while <command>perf</command> monitors the system's performance
counter registers. Selecting either of these tools causes an RSE
terminal view to appear in which you can run the tools. Both tools refresh the
entire screen to display results while they run.</listitem>
</itemizedlist>
</para>
</section>
</section>
<section id="the-anjuta-plug-in">
<title>The Anjuta Plug-in</title>
<para>
<emphasis>Note:</emphasis> We will stop Anjuta plug-in support after
Yocto project 0.9 release. Its source
code can be downloaded from git respository listed below, and free for the community to
continue supporting it moving forward.
</para>
<para>
An Anjuta IDE plugin exists to make developing software within the Poky framework
easier for the application developer.
It presents a graphical IDE with which you can cross compile an application
then deploy and execute the output in a
QEMU emulation session.
It also supports cross debugging and profiling.
</para>
<para>
To use the plugin, a toolchain and SDK built by Poky is required,
Anjuta, it's development headers and the Anjuta plugin.
The Poky Anjuta plugin is available to download as a tarball at the
OpenedHand
labs <ulink url="http://labs.o-hand.com/anjuta-poky-sdk-plugin/"></ulink> page or
directly from the Poky Git repository located at
<ulink url="git://git.pokylinux.org/anjuta-poky"></ulink>.
You can also access a web interface to the repository at
<ulink url="http://git.pokylinux.org/?p=anjuta-poky.git;a=summary"></ulink>.
</para>
<para>
See the README file contained in the project
|