<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-networking/recipes-protocols/quagga, branch daisy</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=daisy</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=daisy'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2014-04-25T01:07:46+00:00</updated>
<entry>
<title>quagga: fix CVE-2013-6051</title>
<updated>2014-04-25T01:07:46+00:00</updated>
<author>
<name>Kai Kang</name>
<email>kai.kang@windriver.com</email>
</author>
<published>2014-04-21T06:24:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=715893e5ffcce8d32f096c93dd36f345e52c17a7'/>
<id>urn:sha1:715893e5ffcce8d32f096c93dd36f345e52c17a7</id>
<content type='text'>
Backport patch to fix CVE-2013-6051.

Signed-off-by: Hu &lt;yadi.hu@windriver.com&gt;
Signed-off-by: Kai Kang &lt;kai.kang@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: fix QA warning</title>
<updated>2014-04-25T01:07:46+00:00</updated>
<author>
<name>Kai Kang</name>
<email>kai.kang@windriver.com</email>
</author>
<published>2014-04-21T06:24:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=a277f303df123e050a98729415fed6a2590e7f76'/>
<id>urn:sha1:a277f303df123e050a98729415fed6a2590e7f76</id>
<content type='text'>
When build quagga, it shows QA warnings:

WARNING: QA Issue: ELF binary '/home/build/poky/build/tmp/work/i586-poky-linux/quagga/0.99.21-r2.0/packages-split/quagga-bgpd/usr/sbin/bgpd' has relocations in .text
WARNING: QA Issue: ELF binary '/home/build/poky/build/tmp/work/i586-poky-linux/quagga/0.99.21-r2.0/packages-split/quagga-ripngd/usr/sbin/ripngd' has relocations in .text

The configure script tests compiler whether support option '-fPIE'. If
support, it pass option '-fPIE' to compiler then cause these QA
warnings.

Disable configure script to check option '-fPIC'.

Signed-off-by: Kai Kang &lt;kai.kang@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: Add mirror site</title>
<updated>2014-04-25T00:39:15+00:00</updated>
<author>
<name>Changhyeok Bae</name>
<email>changhyeok.bae@lge.com</email>
</author>
<published>2014-04-23T11:14:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=3fb3c2c8f8c958ca810af1302c0e7109528b8b66'/>
<id>urn:sha1:3fb3c2c8f8c958ca810af1302c0e7109528b8b66</id>
<content type='text'>
* The SRC_URI is not accessible.
  So need to add mirror site referred by the original site.
* The problem is that
  http://download.savannah.nongnu.org/releases redirects to closest mirror
  and few mirrors (e.g. .jp) weren't working correctly while
  http://download-mirror.savannah.gnu.org/releases/ seems to be reliable.

Signed-off-by: Changhyeok Bae &lt;changhyeok.bae@lge.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: work with new readline</title>
<updated>2014-03-27T19:41:12+00:00</updated>
<author>
<name>Robert Yang</name>
<email>liezhi.yang@windriver.com</email>
</author>
<published>2014-03-27T09:52:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=c1d420a3b65538f80601411f85295db8f4cb30ab'/>
<id>urn:sha1:c1d420a3b65538f80601411f85295db8f4cb30ab</id>
<content type='text'>
The Function and CPPFunction had been removed by in readline 6.3, use
the new functions to replace them.

Signed-off-by: Robert Yang &lt;liezhi.yang@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe.macdonald@windriver.com&gt;
</content>
</entry>
<entry>
<title>quagga: close the stdout/stderr as in other daemons</title>
<updated>2014-02-23T22:17:29+00:00</updated>
<author>
<name>Roy Li</name>
<email>rongqing.li@windriver.com</email>
</author>
<published>2014-02-19T07:38:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=7a673eb37eb784b604f57884f802635aa2c1a49a'/>
<id>urn:sha1:7a673eb37eb784b604f57884f802635aa2c1a49a</id>
<content type='text'>
Once babald becomes a background daemon, it should not output information to
stdout, so need to close stdout.

In fact, other daemons close their stdout when they run into background, like
ospfd, isisd and bgpd, by calling daemon() which is in lib/daemon.c

Closing the stdout can fix a tee hang issue { #/usr/sbin/babeld -d |tee tmp }

Signed-off-by: Roy Li &lt;rongqing.li@windriver.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>quagga: fix a typOS</title>
<updated>2014-02-13T01:09:26+00:00</updated>
<author>
<name>Roy Li</name>
<email>rongqing.li@windriver.com</email>
</author>
<published>2014-01-29T05:26:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=7cb2f9e4c2c6c889345a708c0d0cabde16fbc70c'/>
<id>urn:sha1:7cb2f9e4c2c6c889345a708c0d0cabde16fbc70c</id>
<content type='text'>
it should be CPP, not cpp; this typOS makes vtysh unable to work.

Signed-off-by: Roy Li &lt;rongqing.li@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: Backport a patch to fix extract.pl for cross compilation</title>
<updated>2013-11-27T20:20:06+00:00</updated>
<author>
<name>Roy Li</name>
<email>rongqing.li@windriver.com</email>
</author>
<published>2013-11-21T03:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=75c52163b0f6e847f178d5919678f3c2af6f273f'/>
<id>urn:sha1:75c52163b0f6e847f178d5919678f3c2af6f273f</id>
<content type='text'>
Signed-off-by: Roy Li &lt;rongqing.li@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: add pam support for vtysh</title>
<updated>2013-11-26T16:14:31+00:00</updated>
<author>
<name>Hongxu Jia</name>
<email>hongxu.jia@windriver.com</email>
</author>
<published>2013-11-08T03:30:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=ec152778cd6cc670991445d02e35685e6e3404ed'/>
<id>urn:sha1:ec152778cd6cc670991445d02e35685e6e3404ed</id>
<content type='text'>
According to DISTRO_FEATURES to add pam support for quagga, and import
configure file from Fedora.

Signed-off-by: Hongxu Jia &lt;hongxu.jia@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: Fix watchquagga initscript problem.</title>
<updated>2013-11-26T16:01:47+00:00</updated>
<author>
<name>Bopeng Liu</name>
<email>bopeng.liu@windriver.com</email>
</author>
<published>2013-11-19T21:50:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=98367f46aab5401e4bc2daf318c9bb9110af463b'/>
<id>urn:sha1:98367f46aab5401e4bc2daf318c9bb9110af463b</id>
<content type='text'>
Change the default config file for making watchquagga can startup successful

Signed-off-by: Bopeng Liu &lt;Bopeng.Liu@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
<entry>
<title>quagga: Avoid duplicate connected address adding to the list</title>
<updated>2013-11-26T15:53:17+00:00</updated>
<author>
<name>Xufeng Zhang</name>
<email>xufeng.zhang@windriver.com</email>
</author>
<published>2013-11-19T07:02:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=936febdff7a937cd4ef21ea7e42a800c7b8d2a85'/>
<id>urn:sha1:936febdff7a937cd4ef21ea7e42a800c7b8d2a85</id>
<content type='text'>
commit 27ba970b9("quagga/ripd: Fix two bugs after received SIGHUP signal")
introduces an regression: ifp-&gt;connected list is cleaned up when ripd is
restarting, however, for interface addresses which are not specified in
ripd configuration file, they are never to be added into ifp-&gt;connected
again, this will lead to some abnormal behavior for route advertising.

Instead of cleaning up the ifp-&gt;connected list to avoid duplicated
connected address being added into this list, we can check this
condition during interface address adding process and return early
when an identical address has already been added.

Signed-off-by: Xufeng Zhang &lt;xufeng.zhang@windriver.com&gt;
Signed-off-by: Joe MacDonald &lt;joe@deserted.net&gt;
</content>
</entry>
</feed>
