summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* runqueue.py: Fix debug message to reference the correct taskRichard Purdie2012-01-301-1/+2
| | | | | | (Bitbake rev: 035c673c463ca450245acf824e7b7e8f889bdc89) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* fetch2/local: Don't default to files in DL_DIR for file:// urlsRichard Purdie2012-01-301-3/+1
| | | | | | | | | | | | | | | Defaulting to any file in DL_DIR as the first match for a file:// url doesn't make much sense and can lead to unexpected results. This patch changes the logic so this is the last fallback location instead. Whether it should be using DL_DIR at all for this is a good question but something for another patch. [YOCTO #1710] (Bitbake rev: 5597a68fac0954c682b67471722c2643e2415f99) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* siggen.py: sort task hash depedencies with basepathMatthew McClintock2012-01-301-11/+14
| | | | | | | | | | | | | | | Without this patch the tash hash dependencies can be in a order that is dependent upon directory/filesystem layout. With this change the data is sorted the same regardless. Without this the dependent hashes could be in different orders on different systems and consequently final md5 hash would differ as well even though nothing else changed. (Bitbake rev: 9a2029899c946ce9aa8adbc85f2cfe7a85b92182) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: print out symmetric difference when comparing sigsMatthew McClintock2012-01-301-0/+4
| | | | | | | | | | This is useful for really longs lists to pinpoint what has actually changed (Bitbake rev: f1eb6d3dcc10c42bb09383a87bde3afa69bc6ed9) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* runqueue.py: Ensure we fully process the covered listRichard Purdie2012-01-301-3/+4
| | | | | | | | | | | | | | | The existing looping code can mask an existing "found = True" by forcing it to False each time. This can lead to dependency lists not being fully searched and results in dependency errors. An exmaple of this was the autobuilder building linux-yocto from sstate but then rebuilding some of the recipe's tasks for no apparent reason. Separating the logic into two variables solves this problem since any "found = True" value is now always preserved. (Bitbake rev: 61017fc5d30b7a13308d038872ec92efc1a84cef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* runqueue.py: Ensure setscene tasks don't break dependency orderRichard Purdie2012-01-301-4/+7
| | | | | | | | | | | | | | | If A depends upon B which depends upon C and the setscene for B succeeds but C is going to get rebuilt, we should wait for C to try and build A but currently we don't. This is due to the timing of when we run the task_skip() as this triggers other tasks to become buildable. This patch moves the timing of that call to a more appropriate place allowing dependencies to behave as expected. (Bitbake rev: b7114d8e5d9b0720339bd5d24d243c0f2a7c1f3b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake/runqueue.py: Sort the list of skipped tasks as it makes searching ↵Richard Purdie2012-01-301-1/+1
| | | | | | | | | | the list easier when debugging (From Poky rev: 5de8a495fba657e1febc616bbc737a8136cc88f9) (Bitbake rev: 110f6cccbcc5907e15262c05d5c47da101e1a47d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake/runqueue.py: Fix incorrect task number reference in debug messageRichard Purdie2012-01-301-1/+1
| | | | | | | | (From Poky rev: 45887bbd5479041be05b914668f14de6ec9b9831) (Bitbake rev: dc4439ca8c7db7ceee78bd0552f65ceddcff17a7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* parse_py: Use absolute paths for FILERichard Purdie2012-01-302-2/+2
| | | | | | | | | | | | Its possible for relative paths to creep into FILE. These confuse the build system no end as its not clear where they might be releative to. This patch ensures we always use resolved absolute paths for FILE so that things behave in a deterministic way. (Bitbake rev: 658d7daa70e46c2b20973b90ee53f0bbadc8bf5d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* siggen.py: Include list of variables in hashesRichard Purdie2012-01-301-0/+1
| | | | | | | | | | | | | Ensure that the list of dependencies is included in the hash as well as their contents Prior to this, adding or removing dependencies with values of "None" would not change the hash, despite diffsigs reporting this difference. (Bitbake rev: 727ca945177ce9bd44515cf611e3e95a09466d98) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* siggen.py: Fix diffsigs output for filename comparisionsRichard Purdie2012-01-301-3/+15
| | | | | | | | | | | | | | | When comparing sig files, if the recipe locations had changed, the dependent tasks list would show as changed even if the actual hash had not changed. This updates the code to only compare the base part of the pathnames. It also tweaks some of the output to add newlines to aid comparing two lists of variables as it makes the location of the difference clearer. (Bitbake rev: 165a22ddcc647b945707fb5c483146bb336d5f66) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* codeparser: make var_expands actually hold useful informationChristopher Larson2012-01-301-1/+1
| | | | | | | | | | | Previously, it was calling var_expands.update() rather than add(), with a string argument, resulting in adding each character of that string to the var_expands set, rather than the string itself. (Bitbake rev: 8e4e75383e43d6da2c16ec5286186a0d0569b0f8) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lib/bb/runqueue: avoid marking runtime dependencies as coveredPaul Eggleton2012-01-301-1/+6
| | | | | | | | | | | | | | | | | | | | | | The code which populates setscene_covered list was adding a task to the covered list if all of the tasks that depend upon it were also covered; however, this means that tasks that would have installed "runtime" dependencies were being marked as covered also, e.g. gmp-native and mpfr-native are needed by gcc-cross at runtime since they are shared libraries that gcc links to, but their do_populate_sysroot tasks were being marked as covered, resulting in failures later on if gcc-cross was available from sstate but mpfr-native and gmp-native weren't. Since we currently have no real way to handle runtime dependencies for native packages, add a workaround which avoids marking tasks as covered if one or more of their revdeps are from a different recipe. Fixes [YOCTO #1536]. (Bitbake rev: e492eb4dc9016cd0bed194377c6f2b85cf0ad113) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* utils.py: Fix lockfile retry handlingRichard Purdie2012-01-301-1/+1
| | | | | | | | | | The lockfile retry parameter is expected to return immediately after attempting to take the lock. There was a bug in the logic which this patch fixed to ensure it does that. (Bitbake rev: f421ef819f00ac659504d9af41bcc8323422ff8c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* hob: fix backtrace when dismissing open dialogJoshua Lock2012-01-301-2/+2
| | | | | | | | | | | | Clearly a logic/indentation error - we should only try and load the recipe should the file-chooser return OK. Fixes [YOCTO #1668] (Bitbake rev: db59297aa1861614ffaea4295b9b054baa8a12b9) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* fetch2: Export additional variables to the fetchersMatthew McClintock2012-01-301-1/+2
| | | | | | | | | | git could need these environment variables when working behind a proxy (Bitbake rev: dca46cc2e1c75b6add2c4801e2994a4812745f5b) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* fetch2/git: Make git fetch run with -f so rebased branches don't failMatthew McClintock2012-01-301-1/+1
| | | | | | | | | | | | | | git fetches can fail (or at least return failed) when trying to fetch and prune rebased branches. This patch simply adds a -f to the git fetch command so these failure are ignore Generally, if some SHA was rebased away it's not coming back so there is no point in not doing this force (Bitbake rev: a7b75e4db52445b30ec0fc0053dcf454f5f7d2db) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/Makefile: new 'edison' variable for YP dev manual.Scott Rifenbark2012-01-301-18/+44
| | | | | | | | | | | | | | | | | | | | I discovered that the figures used in this manual differ depending on the branch. There are two figures that are different. Thus, the TARFILES variable in the makefile needed to be conditionalized. If it is not, then the process that makes the tarball throws errors because it cannot find the two figures from the other branch. To fix this I introduced the 'BRANCH' variable. It is to be used only when you make or publish the YP Development Manual. And, you only use it to specify 'edison'. If you are building from the 'master' branch you don't need to use it. Comments in the file have been updated to explain usage. (From yocto-docs rev: 0341b19f75176fd4133fd66cb5536b765edf0294) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/Makefile: fixes for missing tarfilesScott Rifenbark2012-01-301-3/+11
| | | | | | | | | | | | | | I had added some edison-specific figures and they needed to be included in the TARFILE variable for the YP development manual. The fix now makes the TARFILE variable all-inclusive for all .PNG files regardless of branch. Consequently, there can be some missing files when the manual is made but the errors are okay. I documented the exceptions above the variable. (From yocto-docs rev: be731afde47dfc85da6ba88f93910899ec259e87) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-kernel-appendix.xml: edits to exampleScott Rifenbark2012-01-301-34/+82
| | | | | | | | | | | | Poor flow for the config_smp example. Upon reading this example it did not stand well on its own. I added some text, albeit redundant but necessary I felt, so that the example would stand on its own. (From yocto-docs rev: 1677a873e9bd1124a5ff0234edc1ee05938c19b0) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-kernel-appendix.xml: Fixed repo nameScott Rifenbark2012-01-301-1/+2
| | | | | | | | | | I left "work" off the name of the copy of the clone repo for the kernel example. (From yocto-docs rev: 26f3dd9c82beb3c8d6e50c2132756bdb4b29b56d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-kernel-appendix.xml: branch info addedScott Rifenbark2012-01-301-0/+21
| | | | | | | | | | | | The example now uses an edison branch of the poky-extras repo. Now that that is necessary, there needs to be explanation in the example on setting that branch up after creating the local repository. (From yocto-docs rev: 70599a07a6efb0ae2da04baa43b5bb99c9ec4e5d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-model.xml: updated figureScott Rifenbark2012-01-301-1/+1
| | | | | | | | | | | Because the names of the bare clone and copy of the bare clone kernel repos changed in the example this figure needed to be altered. (From yocto-docs rev: e49ec4256bd9fe9f1193b70f8a5ab864c069c863) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documenation/dev-manual/figures: Figures altered.Scott Rifenbark2012-01-302-0/+0
| | | | | | | | | | | | | Changing the name of the bare clone and copy of the bare clone for the appendix A (kernel) example affected this figure of the file structure. I updated the figure, which is now specific to 1.1.x and added it. I also had to remove the figure that will now be specific to (master) work. (From yocto-docs rev: 048af1a6945991c66abef72de05c136e8071a9e5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual: Changes to repo names and kernel example.Scott Rifenbark2012-01-305-18/+22
| | | | | | | | | | | | | | | | | | | | | | | | To make the kernel example more easily understood, Joshua Lock suggested that the names used for the bare clone of the kernel git repo and the copy of the bare clone be more different. So I have changed the example such that the bare clone repo is named linux-yocto-3.0-1.1.x.git and the copy of the bare clone (or working repo) is named my-linux-yocto-3.0-1.1.x-work. Note that this also implies the use of the linux-yocto_3.0-1.1.x kernel and not the linux-yocto_3.0 kernel. All the changes made here should take care of the example. I did have to introduce a new figure that showed the kernel repos based on the new names used in the example. Also, I had to delete the other from this branch. The examples are now diverging according to (master) work and 1.1.x work. Reported-by: Joshua Lock <joshua.lock@intel.com> (From yocto-docs rev: f4fdef6078fccfc2c72b6e0ad1dfae1f1ecb2aa6) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/poky-ref-manual/faq.xml: Fixed links to pythonScott Rifenbark2012-01-301-2/+2
| | | | | | | | | | The links to the 32-bit and 64-bit Python tarballs in miscsupport were broken. I fixed them. (From yocto-docs rev: 6dd820fe8e3d22329a4d6e4edcbba72bf70841c4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-newbie.xml: updated download linkScott Rifenbark2012-01-301-1/+1
| | | | | | | | | | Found a link that was still yoctoproject.org/downloads. I changed to downloads.yoctoproject.org. (From yocto-docs rev: 26c87f543c95efcd7e5a546b3cd0d0756a238fa5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-command.xml: Corrected wording for setupScott Rifenbark2012-01-301-2/+2
| | | | | | | | | | Bad wording fixed to describe the changes to PATH when the setup script is run. (From yocto-docs rev: 95c6049995e8b51a46ba7fba57fcc240b6baeaaf) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-eclipse.xml: Fixed yoctotools referenceScott Rifenbark2012-01-301-3/+3
| | | | | | | | | | | The menu for the YoctoTools in Eclipse moved from underneath "Windows" to the top level. I fixed the reference to reflect that change in the GUI. (From yocto-docs rev: 89830569107200f89d78e0b32b98429a947abe36) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-eclipse.xml: Fixed menu referenceScott Rifenbark2012-01-301-1/+1
| | | | | | | | | | I changed the wording in an example to use "menu" instead of the incorrect "navigator pane". (From yocto-docs rev: d2ce174e8e427c279d90197eb896e1f4df183196) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-eclipse.xml: Added more info for example.Scott Rifenbark2012-01-301-1/+3
| | | | | | | | | | I added a bit more information to the third step of the example that reconfigures a project. (From yocto-docs rev: d30a83e4f62015cbaba9e2532b7e69d1908dfb50) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-eclipse.xml: Removed redundant linkScott Rifenbark2012-01-301-3/+2
| | | | | | | | | I removed a redundant link to the QS manual. (From yocto-docs rev: 20c898194511bd943ca2a93b1a4caad0466fccd9) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-eclipse.xml: Updates to plug-in installScott Rifenbark2012-01-301-53/+58
| | | | | | | | | | | I worked through these methods and discovered a bit more on how they actually work and when the user would use a given method. The updates reflect this new knowledge. (From yocto-docs rev: 346652df7a3423b82a10d41aa2d7dcddb803ad6f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-package.xml: Fixed reference to manual.Scott Rifenbark2012-01-301-3/+1
| | | | | | | | | | Removed redundant link for referencing a section of a different manual. (From yocto-docs rev: 44f4df93ead5c8d48dd536355770919871bdc283) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-prepare.xml: Updates for 1.1.1Scott Rifenbark2012-01-301-23/+27
| | | | | | | | | | These changes reflect working through the chapter using the 1.1.1 release. Several areas needed tweaking. (From yocto-docs rev: 566b8a492e502e88a1404f833db140a6408da592) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/poky-ref-manual/ref-variables.xml: PDF formatting fixed.Scott Rifenbark2012-01-301-0/+6
| | | | | | | | | | | | In the PDF version of the reference guide there were several glossary variables that did not format correctly. The issue is that the two- column list had instances where the variable name overruns the variable description. I added an extra line return for these cases. (From yocto-docs rev: f3ff26568b371807986e4ba77fe41cba6875efcc) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-prepare.xml: added unpacking textScott Rifenbark2012-01-301-0/+8
| | | | | | | | | | I added text to show how to unpack the generated ADT Installer tarball. (From yocto-docs rev: b0cf4554d3dde3a018f8f7901162474cb423ea12) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-prepare.xml: update link to get ADT inst tarballScott Rifenbark2012-01-301-1/+3
| | | | | | | (From yocto-docs rev: b034cda6c18fc350636554b5ff8a4a89f503308d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-intro.xml: Fixed broken perf linkScott Rifenbark2012-01-301-1/+1
| | | | | | | (From yocto-docs rev: 13ddf9ab19f55e5f204ffa78180d89c47d51155f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/adt-manual/adt-prepare.xml: Updated 6.0 to 6.0.1Scott Rifenbark2012-01-301-2/+2
| | | | | | | | | Changes for the 1.1.1 release. (From yocto-docs rev: 42ffeb43ea315b14e8b4668d3ab5ff8a16f1e7ac) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/figures/kernel-example-repos.png: update figureScott Rifenbark2012-01-301-0/+0
| | | | | | | | | | The figure that shows the kernel repos needed the git push command fixed. There was no ":" character in it. (From yocto-docs rev: 69874766764788f08dc448b9835d41b6c67fcd8a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/bsp-guide/bsp.xml: updated crownbay file structureScott Rifenbark2012-01-301-4/+0
| | | | | | | | | | The file hiearchy was stale for the meta-crownbay examples in recipes-graphics. I updated in two places. (From yocto-docs rev: a16bf8ae56efb907a50fbe4c16be0adfeec5c275) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/bsp-guide/bsp.xml: Updated linux-yocto_3.0.bbappend exampleScott Rifenbark2012-01-301-6/+6
| | | | | | | | | | This example had gone stale. I cloned the meta-intel repo and copied the edison branch version of the file into the manual. (From yocto-docs rev: 963c53157f147c556cc4317f68fafeb0650268cc) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-kernel-appendix.xml: menuconfig updateScott Rifenbark2012-01-301-2/+2
| | | | | | | | | | The example that shows menuconfig and where the .config file is was updated to show the use of linux-yocto-3.0 kernel. (From yocto-docs rev: a9f7a73842b428242da95f3dfe6a7b31c123ebc2) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual: Updates to index of releasesScott Rifenbark2012-01-302-2/+2
| | | | | | | | | | Had to update the figure again and I updated the surrounding text. (From yocto-docs rev: d3a0cb2b24dabdf4a022a7426aeb2b80b40ae544) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/figures/index-downloads.png: updated pictureScott Rifenbark2012-01-301-0/+0
| | | | | | | | | | Updated the picture that shows the index of releases. they renamed this from index of downloads. (From yocto-docs rev: 098648434311bbe6de68fbbf89486ee1f9c0e4ec) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-kernel-appendix.xml: cleared up noteScott Rifenbark2012-01-301-1/+2
| | | | | | | | | | | | | | There is note instructing the user to delete unused .bbappend files or comment out the COMPATIBLE_MACHINE statements in those unused files before running the build in the example. the note was not clear about the COMPATIBLE_MACHINE statement in the .bbappend file that is actually being used. I edited the text to be clear about that. (From yocto-docs rev: 44277b9c5d8a77958a4220fa790bc13e9ce697b3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-bsp-appendix.xml: hddimg size updatedScott Rifenbark2012-01-301-1/+1
| | | | | | | | | | The 'dd' example needed updating for the output that shows the size of the image. (From yocto-docs rev: f7cee3f3b9ccf2760de182b3d545e8d53ef83786) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-start.xml: updated to clone outputScott Rifenbark2012-01-301-6/+8
| | | | | | | | | | Updated the console output created when you create the bare clone and the copy of the bare clone. (From yocto-docs rev: 73130ec4a785417c5b8a91c0b577ac3681562b77) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* documentation/dev-manual/dev-manual-start.xml: poky-extra output updatedScott Rifenbark2012-01-301-5/+6
| | | | | | | | | | I updated the console output returned when you set up the poky-extras repo. (From yocto-docs rev: f4a6bea21df8dc6df1c30288a6ea93218e7d614d) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>