12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
- <title>2.4.2.1. Build History Package Information</title>
- <link rel="stylesheet" type="text/css" href="../book.css">
- <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
- <link rel="home" href="index.html" title="The Yocto Project Reference Manual">
- <link rel="up" href="understanding-what-the-build-history-contains.html" title="2.4.2. Understanding What the Build History Contains">
- <link rel="prev" href="understanding-what-the-build-history-contains.html" title="2.4.2. Understanding What the Build History Contains">
- <link rel="next" href="build-history-image-information.html" title="2.4.2.2. Build History Image Information">
- </head>
- <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="section" title="2.4.2.1. Build History Package Information">
- <div class="titlepage"><div><div><h4 class="title">
- <a name="build-history-package-information"></a>2.4.2.1. Build History Package Information</h4></div></div></div>
- <p>
- The history for each package contains a text file that has
- name-value pairs with information about the package.
- For example, <code class="filename">buildhistory/packages/core2-poky-linux/busybox/busybox/latest</code>
- contains the following:
- </p>
- <pre class="literallayout">
- PV = 1.19.3
- PR = r3
- RDEPENDS = update-rc.d eglibc (>= 2.13)
- RRECOMMENDS = busybox-syslog busybox-udhcpc
- PKGSIZE = 564701
- FILES = /usr/bin/* /usr/sbin/* /usr/libexec/* /usr/lib/lib*.so.* \
- /etc /com /var /bin/* /sbin/* /lib/*.so.* /usr/share/busybox \
- /usr/lib/busybox/* /usr/share/pixmaps /usr/share/applications \
- /usr/share/idl /usr/share/omf /usr/share/sounds /usr/lib/bonobo/servers
- FILELIST = /etc/busybox.links /etc/init.d/hwclock.sh /bin/busybox /bin/sh
- </pre>
- <p>
- Most of these name-value pairs corresponds to variables used
- to produce the package.
- The exceptions are <code class="filename">FILELIST</code>, which is the
- actual list of files in the package, and
- <code class="filename">PKGSIZE</code>, which is the total size of files
- in the package in bytes.
- </p>
- <p>
- There is also a file corresponding to the recipe from which the
- package came (e.g.
- <code class="filename">buildhistory/packages/core2-poky-linux/busybox/latest</code>):
- </p>
- <pre class="literallayout">
- PV = 1.19.3
- PR = r3
- DEPENDS = virtual/i586-poky-linux-gcc virtual/i586-poky-linux-compilerlibs \
- virtual/libc update-rc.d-native
- PACKAGES = busybox-httpd busybox-udhcpd busybox-udhcpc busybox-syslog \
- busybox-mdev busybox-dbg busybox busybox-doc busybox-dev \
- busybox-staticdev busybox-locale
- </pre>
- <p>
- </p>
- </div></body>
- </html>
|