<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/scripts, branch bernard-5.0-alpha</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=bernard-5.0-alpha</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=bernard-5.0-alpha'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2011-02-10T15:27:50+00:00</updated>
<entry>
<title>qemuimagetest: Rename test scenario file from poky-image-sdk to poky-image-sato-sdk</title>
<updated>2011-02-10T15:27:50+00:00</updated>
<author>
<name>Jiajun Xu</name>
<email>jiajun.xu@intel.com</email>
</author>
<published>2011-02-10T14:50:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=d2cfd3c54fd27ea302af390c3c9e9ae60cf26604'/>
<id>urn:sha1:d2cfd3c54fd27ea302af390c3c9e9ae60cf26604</id>
<content type='text'>
Signed-off-by Jiajun Xu &lt;jiajun.xu@intel.com&gt;
</content>
</entry>
<entry>
<title>image-swab: Convert to attach strace to the process to obtain the required swabber data</title>
<updated>2011-02-10T11:51:48+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-02-10T11:50:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=296866c38e1b88df42d66bdc32cfed2d5212914c'/>
<id>urn:sha1:296866c38e1b88df42d66bdc32cfed2d5212914c</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>fetch2: Add SRPM knowledge</title>
<updated>2011-02-08T18:01:35+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@windriver.com</email>
</author>
<published>2011-02-08T00:18:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=906285ff00d6ffd3fd7713af52250e7c6503edb7'/>
<id>urn:sha1:906285ff00d6ffd3fd7713af52250e7c6503edb7</id>
<content type='text'>
Enable the fetcher to be able to unpack and SRPM.  By default the system will
unpack the contents of the SRPM into the WORKDIR.

A new syntax "unpack=file" was developed for the SRC_URI, to allow for a
recipe to extract a specific file within an SRPM.  An unpack operation will
then be executed on the extracted file.

In order to apply extracted patches (or unpack files not specified with
unpack), you must specify the path using WORKDIR, i.e.:

file://${WORKDIR}/mypatch.patch

Signed-off-by: Mark Hatle &lt;mark.hatle@windriver.com&gt;
</content>
</entry>
<entry>
<title>scripts/poky-env-internal: We set LC_ALL in the core so no need to set LANG here now</title>
<updated>2011-02-02T11:58:44+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-02-02T11:58:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=c636efaebb186c38b210a13a521853b66da1800f'/>
<id>urn:sha1:c636efaebb186c38b210a13a521853b66da1800f</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>scripts/bitbake: remove bashisms</title>
<updated>2011-01-31T11:38:35+00:00</updated>
<author>
<name>Joshua Lock</name>
<email>josh@linux.intel.com</email>
</author>
<published>2011-01-31T11:38:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7e206c6477934df9d885e4d109e15705d88907b2'/>
<id>urn:sha1:7e206c6477934df9d885e4d109e15705d88907b2</id>
<content type='text'>
As the BitBake script is the initial entry point for the system we need to
ensure it can run in as many places as possible, including systems which
aren't yest optimally configured for running Poky.
Remove some bashisms from the script so that it can run under Dash.

Pointers from: https://wiki.ubuntu.com/DashAsBinSh
Errors before this patch: http://pastie.org/1502136

Signed-off-by: Joshua Lock &lt;josh@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>creating the rpmrepo metadata</title>
<updated>2011-01-30T20:09:52+00:00</updated>
<author>
<name>Qing He</name>
<email>qing.he@intel.com</email>
</author>
<published>2011-01-18T10:00:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=e67698743eb6fea77f03d712be5d838fbc887f16'/>
<id>urn:sha1:e67698743eb6fea77f03d712be5d838fbc887f16</id>
<content type='text'>
This includes two method for build rpm repo:
  1. create the metadata in rootfs_rpm
  2. standalone binary for building the metadata

Not both of them are needed, generally #2 fits more for the purpose,
but #1 may have its use on rootfs creation using zypper.

Both share some problems and are subjected for future improvement:
  1. the createrepo now builds metadata for the whole directory,
     if there are more than one arch, it builds for all, which means
     rootfs_rpm may run longer if more builds have been run.
  2. createrepo builds metadata for stale rpms

Signed-off-by: Qing He &lt;qing.he@intel.com&gt;
</content>
</entry>
<entry>
<title>scripts/bitbake: If pseudo isn't in staging for some reason, force a build of it directly</title>
<updated>2011-01-28T11:01:11+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-01-28T11:01:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=bce90ed58654adf45d0edbf54a93de2909c543bc'/>
<id>urn:sha1:bce90ed58654adf45d0edbf54a93de2909c543bc</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>scripts/bitbake: We only need pseudo-native in the sysroot, we can ignore any other pieces of the dependency tree</title>
<updated>2011-01-28T10:44:15+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-01-28T10:44:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=7261f25a075ba25b90f9207e9cf9e97bc818f3b0'/>
<id>urn:sha1:7261f25a075ba25b90f9207e9cf9e97bc818f3b0</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>send-pull-request: ensure a proper FROM header is included</title>
<updated>2011-01-26T17:49:07+00:00</updated>
<author>
<name>Darren Hart</name>
<email>dvhart@linux.intel.com</email>
</author>
<published>2011-01-26T17:42:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=4e23e8f9d0e22cf534c19224cba0be9bedba0120'/>
<id>urn:sha1:4e23e8f9d0e22cf534c19224cba0be9bedba0120</id>
<content type='text'>
Commit 94629f2521711055b412f954af19e48b9bda6e50 removes the FROM header when
sending via sendmail to avoid sending mail as the original change committer (as
opposed to the local user). This resulted in mail going out without any FROM
header, which some mailing lists correct by adding the *bounce address as the
FROM.

Correct this by reading FROM from the environment, from a new -f argument, or
from the git user.name and user.email config settings, in that order of
preference. Also display the FROM that will be used prior to the send
confirmation.

This has no effect if the -g (send via git) argument is specified, other than
printing the git sendemail.from config setting.

Signed-off-by: Darren Hart &lt;dvhart@linux.intel.com&gt;
Reported-by: Saul Wold &lt;saul.wold@intel.com&gt;
</content>
</entry>
<entry>
<title>send-pull-request: send all patches as the local user</title>
<updated>2011-01-24T22:09:13+00:00</updated>
<author>
<name>Darren Hart</name>
<email>dvhart@linux.intel.com</email>
</author>
<published>2011-01-21T21:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=94629f2521711055b412f954af19e48b9bda6e50'/>
<id>urn:sha1:94629f2521711055b412f954af19e48b9bda6e50</id>
<content type='text'>
When using sendmail to send patches, patches would appear to be from the
original author as git adds a From: header in the generated patches.  This patch
changes this behavior to match that of git-send-email, where the email From:
header is that of the current sender (according to sendmail) and a "From:
Original Author &lt;email&gt;" line is inserted into the body of the message.

Signed-off-by: Darren Hart &lt;dvhart@linux.intel.com&gt;
</content>
</entry>
</feed>
