summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-12-07bitbake: build/siggen.py: Avoid removing too many stamps when cleaningRichard Purdie
The "*" part of the mask is to ensure we clean both any stamp, and any setscene varient. It turns out we would also trample other tasks, e.g. do_package_write could trample do_package_write_rpm. do_package also tramples do_package_write_* but this is less of an issue since the other tasks depend on it. Rather than use the wildcard, we can just use a list instead. [YOCTO #3484] (Bitbake rev: f31d930e9b2aa483aa30f6e7f7ec9b9f1321e3a1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07bitbake: fetch2/wget: Fix for mixed-up wget commandsCristian Iorga
wget commands for check and resume were mixed-up, leading to the following issues: 1. long running "NOTE: Preparing runqueue" reason: objects were downloaded, not spidered on the mirror 2. Failing network test in Build Appliance, because wget 1.14 (in use in BA) will fail if a file already exists. During the network connectivity test, index.php file was actually downloaded, not spidered (checked for existence on yoctoproject.org website), leading to wget failure. (Bitbake rev: 6f960055f55c5559562e8cc89961508fc27bf3eb) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07bitbake: hob: hob was freezing because it doesn't receives well the log fileCristiana Voicu
-after pressing "build image" button, hob was freezing because it didn't receive well the log file [YOCTO #3398] (Bitbake rev: e0bd4c4616511ec7918f801fb5e04984ebea8158) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07bitbake: command: add error to return of runCommandChristopher Larson
Currently, command.py can return an error message from runCommand, due to being unable to run the command, yet few of our UIs (just hob) can handle it today. This can result in seeing a TypeError with traceback in certain rare circumstances. To resolve this, we need a clean way to get errors back from runCommand, without having to isinstance() the return value. This implements such a thing by making runCommand also return an error (or None if no error occurred). As runCommand now has a method of returning errors, we can also alter the getCmdLineAction bits such that the returned value is just the action, not an additional message. If a sync command wants to return an error, it raises CommandError(message), and the message will be passed to the caller appropriately. Example Usage: result, error = server.runCommand(...) if error: log.error('Unable to run command: %s' % error) return 1 (Bitbake rev: d1002e33e05d45a7e1bd65d79537419a4057e43a) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07documentation: poky-ref-manual - Fixed grammar typo.Scott Rifenbark
(From yocto-docs rev: 6f9fe9a15a57312e09fc1a247f45bccb0aa95dd4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-07documentation: Makefile - Remove tarfile for clean target.Scott Rifenbark
When a user makes a manual and specifies the 'clean' target the *.tgz file should be removed also. Added code to accomplish this. (From yocto-docs rev: 005c86303089d2ccc646bc70700a6084de887996) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-03documentation: adt-manual - Adds opkg configuration noteScott Rifenbark
Fixes [YOCTO #2645] For 1.3.1 the ADT Installer script is based on ipkg stuff according to Jessica. There is a couple of directories created inside the adt-installer directory when you run the script. One of the directories (opkg) has a configuration file in it that might need to be edited depending on where the user is going for YOCTOADT_REPO. If they are using their own repo then need to edit the file. I have added instruction for this scenario. (From yocto-docs rev: 33a3e07947f2ae8cf124c19b5d3111b36aea09e4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-03documentation: adt-manual - Added information for required packagesScott Rifenbark
The note alerting the user to required host development packages necessary for ADT installation and use was antiquated and did not point to the new structure, which is in the YP Reference Manual. I updated the information. (From yocto-docs rev: a56f41fe7405c2255db3f4d1fe7b091d8bbf7b12) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-12-03documentation: poky-ent - changed 'awk' to 'gawk'Scott Rifenbark
(From yocto-docs rev: c5aa99dbaef5cfb87f7d359454ec4592e856b857) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: yocto-project-qs - Final changes before the 1.3 lockdowndanny-8.01.3Scott Rifenbark
Fixed used of "Source Directory" and Build Directory. (From yocto-docs rev: a4d79c5a7e73003fc99c274d876fbea453a80d20) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: poky-ref-manual - Final changes before the 1.3 lockdown.Scott Rifenbark
various changes as required. (From yocto-docs rev: 7f166508337c9d4aadad23997470a8871c5e42a4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: dev-manual - Final changes before 1.3 lockdown.Scott Rifenbark
Made minor changes as needed due to some new sections, links, and capitalization standards. (From yocto-docs rev: bc966e5a78dadd14ecf1896a36e40a9b256bae77) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: bsp-guide - Final edits before 1.3 lockdownScott Rifenbark
Updated some example text based on the latest source repositories for crown bay. Replaced fishriver example with fri2. Updated some capitalization usage for source directory and build directory. (From yocto-docs rev: 65973f7b30699fbb82b4d7f1b907e947489ba7d0) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: adt-manual - final edits before 1.3 lockdown.Scott Rifenbark
Made some minor edits to the book before locking down the files for 1.3. (From yocto-docs rev: 2b941103585a31b5dbcb65b784cc3381467ed697) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: dev-manual - fixed capitalization on Source Directory.Scott Rifenbark
(From yocto-docs rev: 8cfbd4eb519b2b966626c9a1ffd8515c198c2abd) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: kernel-manual - minor edits before lockdownScott Rifenbark
Fixed a few references and links. Also standardized on the capitalization for the term "Source Directory" where it refers to the YP poky structure on the development machine. (From yocto-docs rev: 1a20418d8791d754ad66c5a059e65bd68a4c6b32) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: dev-manual - Updates to Git workflow and kernel patchScott Rifenbark
I updated the sections on the "Git Workflow" in Chapter 4 and the "Patching the Kernel" section in Chapter 5 per Tom Zanussi's review comments. Minor technical changes. (From yocto-docs rev: fd8a291349c06328adebd37f8a9bbeaa49adb44c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-23documentation: poky-ref-manual - new variable and edited variableScott Rifenbark
Added the DISTRO_EXTRAS_RDEPENDS variable to the glossary and updated the DISTRO_EXTRAS_RRECOMMENDS variable per Paul Eggleton's review. (From yocto-docs rev: bb27fcb3b990bb335176d5da9fec420fdc31bf22) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-22documentation: dev-manual - removed the wip.png figureScott Rifenbark
this figure used to be at the end of the development manual. I have removed it from both figures directories and taken it out of the TARFILE list in the Makefile. (From yocto-docs rev: ad8fcfc4bddb6bcee0e1a4ece78cd87ab0d51b6c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-22documentation: poky-ref-manual - Updates to DEPENDS and RDEPENDSScott Rifenbark
Suggested changes to help clear up what the list of items in each of these variables should be and how automatic handling of libraries is dealt with. Richard Purdie reviewed the changes. (From yocto-docs rev: 53865f904d5d4675286419a57bbb9282edfc1d0b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - edits to SUMMARY and DESCRIPTIONScott Rifenbark
Some final edits to these two variable descriptions from Paul Eggleton. (From yocto-docs rev: b606eed0f6a326ef572cd831b642312bb827a8c5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documenation: poky-ref-manual - updates to the LICENSE variable.Scott Rifenbark
(From yocto-docs rev: 68bb94ccb879401d65e652746f138a139eaa0ca4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - updated the DESCRIPTION variable.Scott Rifenbark
(From yocto-docs rev: 170ed775df6d22b9570806367cbc17e6050d1493) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - Updated SUMMARY variable description.Scott Rifenbark
(From yocto-docs rev: 13e38a7cd887f03ce6fde688c89ac989587123ef) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: dev-manual - Updated compliance section.Scott Rifenbark
Applied legal changes per Karen Copenhaver's suggestions. (From yocto-docs rev: 73b68aa349530f6604c7edc87b503f1b614b2c46) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - Edits to feature backfillScott Rifenbark
Final edits (I think) to this section from Paul Eggleton. (From yocto-docs rev: 95fd830ffb668109631205df4538454ccf023b20) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - Backfill variables updated.Scott Rifenbark
Updated the MACHINE_FEATURES_BACKFILL, MACHINE_FEATURES_BACKFILL_CONSIDERED, DISTRO_FEATURES_BACKFILL, and DISTRO_FEATURES_BACKFILL_CONSIDERED variables to have more comprehensive information. (From yocto-docs rev: 355eb3ebe02fbe4a340adaf83bf29a46f7c8230f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documenation: poky-ref-manual - updates to variables.Scott Rifenbark
Did some re-wording on the WiFi example in both the MACHINE_EXTRA_RDEPENDS and MACHINE_EXTRA_RRECOMMENDS variables. Clunkiness fixed. (From yocto-docs rev: 0c76ae0ee14cce62ff02b728b1c9ac21f4f3b385) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - updates to distros and machinesScott Rifenbark
The sections that list the features you can provide with the MACHINE_FEATURES and DISTR_FEATURES variables implied that the set was finite. It is not. I added wording to that effect. (From yocto-docs rev: d8e79fdf909ba5586dc45320b7cca03de639f49b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - edits to the features backfill section.Scott Rifenbark
(From yocto-docs rev: 7507d73501830896602bb18677eb7b0710794f55) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - edits to *_FEATURES glossaryScott Rifenbark
Changed wording so that the lists of features do not seem to be finite. But rather, the set shipped with YP. (From yocto-docs rev: 68e1eba075819863d8137be0b4c70935b88cb1a3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - updates to feature backfill section.Scott Rifenbark
(From yocto-docs rev: aaf1156398033d50add5ac3944aa575917c7f7de) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-19documentation: poky-ref-manual - Updates to MACHINE glossary entry.Scott Rifenbark
(From yocto-docs rev: 666562a428f5db2b2fc18c7cd21d17247479b24c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-18documentation: poky-ref-manual - edits to MACHINE type variables.Scott Rifenbark
Did some editing that helps clarify variables that deal with the MACHINE. (From yocto-docs rev: f1f63acffc952cc7d755fc6dd555379572fddaf0) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-18documentation: poky-ref-manual - quoted section referenceScott Rifenbark
For consistency. (From yocto-docs rev: 7b51db2d3409d6a9c74a7a9b0b2cc39cf6622033) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-18documentation: poky-ref-manual - Updated build/conf/local.confScott Rifenbark
I added the BB_NUMBER_THREAD and PARALLEL_MAKE variables into the description for suggested variables to set if you edit local.conf. (From yocto-docs rev: 7345bbf6c10b823e6364e85a4e75a7ec60a29aef) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-18documentation: poky-ref-manual - updated the STAMP glossary description.Scott Rifenbark
(From yocto-docs rev: 63720ee98bc9dd4eaa574784e7aa1ccd20822e80) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - small edit in wording.Scott Rifenbark
Better wording for MULTIMACH_TARGET_SYS. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - Added and updated variables.Scott Rifenbark
Fixes [YOCTO_#3262] * Added correct information to the STAMP variable glossary entry. * Created a new variable glossary item for the MULTIMACH_TARGET_SYS variable. * Created a new variable glossary item for the EXTENDPE variable. Reported-by: Patrick Turley <patrickturley@gamestop.com> (From yocto-docs rev: ea50e41dc71d3876dd1b00aeec663400ac4a5ced) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: dev-manual - Edits to "Patching the Kernel" section.Scott Rifenbark
Edits according to Darren Hart's feedback. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: dev-manual - lttng and Git workflow changesScott Rifenbark
* Updates to the Git Workflow section based on feedback from Darren Hart. These changes simplify the flow and make it generic. * Updates to the lttng user space tool used from within Eclipse. The legacy version of the tool is no longer supported so it had to be edited out of the description and replaced with the 2.0 version. (From yocto-docs rev: 81d2b79035fc99f92364bfef2c76076738cbaa52) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: bsp-guide - minor edits.Robert P. J. Day
One change resulted in changing out "include" for "require" in code from the Crown Bay example. (From yocto-docs rev: 69b21d5f62ad9020646a26ce13d349af50aee419) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - changes to required variables for recipesScott Rifenbark
Several variables are no longer needed in this section. I have removed them. Reported-by: Paul Eggleton <paul.eggleton@intel.com> (From yocto-docs rev: b627269d18d9c8b4342f8465966d780756ff5a22) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: dev-manual - small edit to compliance section.Scott Rifenbark
(From yocto-docs rev: 4c80b414645b1cb8750dd877a1f857807a9f1259) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: dev-manual - edits to the compliance section.Scott Rifenbark
Feedback from Paul Eggleton suggested to not use the linked term "Source Directory" in the last paragraph of this section. Reasoning being that it is mis-leading in this case. People reading this will be thinking more along the lines of traditional source code rather than our establishe "Source Directory" term, which in the doc set refers to either the unpacked poky tarball or the cloned poky Git repository. Reported-by: Paul Eggleton <paul.eggleton@intel.com> (From yocto-docs rev: f9bfcdebf85481839df01442ee81c4c9e8ee559a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - added note about PATHScott Rifenbark
Added a note explaining why "PATH" is needed when using SSTATE_MIRRORS if the shared state directory structure on the mirror is the same as SSTATE_DIR. (From yocto-docs rev: 94b8a45827d2bf7f16ec530de694ec5e4e6ed164) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: Release date updated.Scott Rifenbark
Updated the release month in all the manual revision history tables to say "October 2012" from "Sometime in 2012". (From yocto-docs rev: 1fc9313fe6c69db3d8cece6d940f78a2f0dc8386) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - edits to migration chapter.Scott Rifenbark
Paul Eggleton's review comments applied. (From yocto-docs rev: b7d9a547218f1d79ae5802a41df11911bc9b7e9f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: dev-manual - Removed whitespace.Scott Rifenbark
(From yocto-docs rev: 8f6479e8e04a54929e704064ecb44e3fee3cf8b3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-10-17documentation: poky-ref-manual - New chapter on migration added.Scott Rifenbark
Created a new chapter dedicated to migration information for the user updgrading from a previous YP release. Also had to include the new chapter in the poky-ref-manual.xml manual so that it will build. (From yocto-docs rev: df8e02c17bc8157ad4abd1e4954f762ccde8915c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>