All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/fakeroot: backport patch
@ 2017-03-13 16:44 Yann E. MORIN
  2017-03-14 21:25 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2017-03-13 16:44 UTC (permalink / raw)
  To: buildroot

Backport the single change there is between 1.10.2 and 1.21.

We do not bump to 1.21 because the tarball for 1.21 does not contain the
generated autostuff, which would require we autoreconf fakeroot, but
that pulls in dependencies on host-autoconf, host-automake, host-m4 and
host-libtool, which is a little tiny-weeny bit too much.

So we just backport that single change.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Andreas Naumann <dev@andin.de>
---
 package/fakeroot/0002-message-buffer-size.patch | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 package/fakeroot/0002-message-buffer-size.patch

diff --git a/package/fakeroot/0002-message-buffer-size.patch b/package/fakeroot/0002-message-buffer-size.patch
new file mode 100644
index 0000000..d023569
--- /dev/null
+++ b/package/fakeroot/0002-message-buffer-size.patch
@@ -0,0 +1,16 @@
+Increase the buffer size for IPC messages
+
+[yann.morin.1998 at free.fr: backported from 1.21]
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+--- fakeroot-1.20.2/message.h	2014-10-05 17:16:00.000000000 +0200
++++ fakeroot-1.21/message.h	2016-06-26 23:19:15.000000000 +0200
+@@ -64,7 +64,7 @@
+ #pragma pack()
+ #endif
+ 
+-#define MAX_IPC_BUFFER_SIZE 256
++#define MAX_IPC_BUFFER_SIZE 1024
+ 
+ #if __SUNPRO_C
+ #pragma pack(4)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/fakeroot: backport patch
  2017-03-13 16:44 [Buildroot] [PATCH] package/fakeroot: backport patch Yann E. MORIN
@ 2017-03-14 21:25 ` Thomas Petazzoni
  2017-03-14 21:33   ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2017-03-14 21:25 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 13 Mar 2017 17:44:33 +0100, Yann E. MORIN wrote:
> Backport the single change there is between 1.10.2 and 1.21.
> 
> We do not bump to 1.21 because the tarball for 1.21 does not contain the
> generated autostuff, which would require we autoreconf fakeroot, but
> that pulls in dependencies on host-autoconf, host-automake, host-m4 and
> host-libtool, which is a little tiny-weeny bit too much.
> 
> So we just backport that single change.
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Cc: Andreas Naumann <dev@andin.de>

Since this doesn't solve Andreas problem, what is the remaining
motivation for this patch ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/fakeroot: backport patch
  2017-03-14 21:25 ` Thomas Petazzoni
@ 2017-03-14 21:33   ` Yann E. MORIN
  0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2017-03-14 21:33 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2017-03-14 22:25 +0100, Thomas Petazzoni spake thusly:
> On Mon, 13 Mar 2017 17:44:33 +0100, Yann E. MORIN wrote:
> > Backport the single change there is between 1.10.2 and 1.21.
> > 
> > We do not bump to 1.21 because the tarball for 1.21 does not contain the
> > generated autostuff, which would require we autoreconf fakeroot, but
> > that pulls in dependencies on host-autoconf, host-automake, host-m4 and
> > host-libtool, which is a little tiny-weeny bit too much.
> > 
> > So we just backport that single change.
> > 
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> > Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> > Cc: Andreas Naumann <dev@andin.de>
> 
> Since this doesn't solve Andreas problem, what is the remaining
> motivation for this patch ?

None. Marked as rejected.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-03-14 21:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-13 16:44 [Buildroot] [PATCH] package/fakeroot: backport patch Yann E. MORIN
2017-03-14 21:25 ` Thomas Petazzoni
2017-03-14 21:33   ` Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.