<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-initramfs, branch danny</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=danny</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=danny'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2012-11-23T14:22:46+00:00</updated>
<entry>
<title>README: update to danny</title>
<updated>2012-11-23T14:22:46+00:00</updated>
<author>
<name>Eric BENARD</name>
<email>eric@eukrea.com</email>
</author>
<published>2012-11-22T09:19:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=f8ad0760abf8055bac27036853c56f56b40a36c7'/>
<id>urn:sha1:f8ad0760abf8055bac27036853c56f56b40a36c7</id>
<content type='text'>
Signed-off-by: Eric Bénard &lt;eric@eukrea.com&gt;
Acked-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>klibc: upgrade from 2.0.1 to 2.0.2</title>
<updated>2012-11-16T10:25:38+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-10-24T23:08:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=a398b07f294b05608c82726cd4ca2fdba111dc36'/>
<id>urn:sha1:a398b07f294b05608c82726cd4ca2fdba111dc36</id>
<content type='text'>
Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>klibc: refactor runtime deps for shared utils</title>
<updated>2012-11-16T10:25:36+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-11-01T18:50:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=de40d9357d793cba0fd17cd46106ffd6b7fdc85f'/>
<id>urn:sha1:de40d9357d793cba0fd17cd46106ffd6b7fdc85f</id>
<content type='text'>
rebased after d.expand / bb.data.expand change

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>Replace bb.data.* with d.*</title>
<updated>2012-10-28T14:32:06+00:00</updated>
<author>
<name>Paul Eggleton</name>
<email>paul.eggleton@linux.intel.com</email>
</author>
<published>2012-10-28T13:49:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=3a30c562385cb3d9cd1b3043f6fe677a22024018'/>
<id>urn:sha1:3a30c562385cb3d9cd1b3043f6fe677a22024018</id>
<content type='text'>
Used sed expression given here:

http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html

Plus an additional expression for .expand. Full expression is:

sed \
-e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \
-e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \
-e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \
-e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \
-e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \
-e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \
-e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \
-i `grep -ril bb.data *`

Some minor correction in systemd.bbclass was needed for some expressions
that didn't quite match the regex in the desired way; additionally a few
instances were manually changed.

Signed-off-by: Paul Eggleton &lt;paul.eggleton@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>PACKAGES_DYNAMIC: use regexp not glob</title>
<updated>2012-10-19T09:42:13+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2012-10-12T08:13:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=8402b7ac0f2e3b0afd9d56e16e7935e1887c7698'/>
<id>urn:sha1:8402b7ac0f2e3b0afd9d56e16e7935e1887c7698</id>
<content type='text'>
* bitbake uses PACKAGES_DYNAMIC as regexp
  ^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
  * made all those last '-' optional, use .* (or nothing)
* use += instead of = in most cases to keep ${PN}-locale from
  bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>kexec-tools.klibc_2.0.2: fix checksums</title>
<updated>2012-09-17T12:20:28+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-09-11T21:45:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=da4d1ea16bef34ce5631877f08f4bea12653d061'/>
<id>urn:sha1:da4d1ea16bef34ce5631877f08f4bea12653d061</id>
<content type='text'>
* those are the SRC_URI checksums since 15-Jan-2012 22:10
* re-uploaded after kernel.org outage

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>initramfs-kexecboot-image: zap LDCONFIGDEPEND</title>
<updated>2012-08-24T09:06:17+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-08-22T21:48:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=fdfe29f7fc0fb1ca87ddb68807d99ebe302b51cf'/>
<id>urn:sha1:fdfe29f7fc0fb1ca87ddb68807d99ebe302b51cf</id>
<content type='text'>
* Override the settings of image.bbclass:
* we don't need ld.so.cache in our minimal image.
* While there, remove now unused ONLINE_PACKAGE_MANAGEMENT var.

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>klibc: upgrade from 2.0 to 2.0.1</title>
<updated>2012-08-16T13:17:57+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-08-12T23:14:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=5fd2b71ccab54b0717ebed21869754de16bd3608'/>
<id>urn:sha1:5fd2b71ccab54b0717ebed21869754de16bd3608</id>
<content type='text'>
* remove unused patches legacy of oe-classic

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>initramfs-kexecboot-image: fix dependency chain was: ['ubiattach']</title>
<updated>2012-08-16T13:17:56+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-08-12T21:20:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=2c89991a1a682faea4eb31246508e789364464ca'/>
<id>urn:sha1:2c89991a1a682faea4eb31246508e789364464ca</id>
<content type='text'>
* unfortunately there is no package-split for the mtd-utils recipe
* to have ubiattach we need to install the full package
* (or use ubiattach-klibc)

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>klibc: fix runtime dependencies for shared utils</title>
<updated>2012-08-16T13:17:55+00:00</updated>
<author>
<name>Andrea Adami</name>
<email>andrea.adami@gmail.com</email>
</author>
<published>2012-08-12T21:19:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=5b2b72da34ac529308833a83d0f2c660a7916e83'/>
<id>urn:sha1:5b2b72da34ac529308833a83d0f2c660a7916e83</id>
<content type='text'>
* and remove bogus dependencies for the static utils
* introduced by do_split_packages
* bump INC_PR

Signed-off-by: Andrea Adami &lt;andrea.adami@gmail.com&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
</feed>
