All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
@ 2013-10-06 14:42 Thomas Petazzoni
  2013-10-08 15:17 ` Ludovic Desroches
  2013-10-11  8:11 ` [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas De Schampheleire
  0 siblings, 2 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2013-10-06 14:42 UTC (permalink / raw)
  To: buildroot

Hello,

The oldest patches in patchwork don't get a lot of attention (or even
any attention at all). I had a discussion this week with Thomas De
Schampheleire, and we would like to progressively clean up the backlog
of patches we have in patchwork, especially the oldest one.

So, every week, I'll be posting the list of the 10 oldest patches, with
the original patch contributors in Cc. During one week, we have the
opportunity to discuss the patch, whether it is still necessary or not,
how it should be changed to be merged.

In particular, I'm interested in knowing if the original contributor is
still interested by the patch, or if someone else is interested in
adopting the patch and sending an updated version, or if the patch no
longer makes sense due to other changes made in Buildroot.

All patches that have not received any comment or attention within the
week will be removed from patchwork. This is aggressive, but we have
patches sitting in patchwork since one year and half, and this cannot
work.

So, for this first week, the patches are:

 1 New: add lava-test package
   http://patchwork.ozlabs.org/patch/155498/
   ludovic.desroches at atmel.com

 2 [v3] busybox: install S41inetd and inetd.conf if inetd is enabled in busybox.
   http://patchwork.ozlabs.org/patch/164551/
   keguang.zhang at gmail.com

 3 [1/1] ccache: expose control interface via 'make ccache-options'
   http://patchwork.ozlabs.org/patch/165382/
   roylee17 at gmail.com

 4 [V2] p910nd: Add p910nd lightweight printserver
   http://patchwork.ozlabs.org/patch/165542/
   david.c.purdy at gmail.com

 5 Added package v86d which provides a real-mode helper for uvesafb driver.
   http://patchwork.ozlabs.org/patch/171840/
   golubovsky at gmail.com

 6 grub: fix stage2 link with recent binutils
   http://patchwork.ozlabs.org/patch/173191/
   net147 at gmail.com

 7 valgrind: valgrind/valgrind.h missing if --disable-tls enabled
   http://patchwork.ozlabs.org/patch/176795/
   stefan.froberg at petroprogram.com

 8 [2/2] rdiff-backup: new package
   http://patchwork.ozlabs.org/patch/176956/
   avishorp at gmail.com

 9 [1/2,v4] package: pkg-generic: Support building override source without copying in common package infrastructure.
   http://patchwork.ozlabs.org/patch/177618/
   sonic.adi at gmail.com

10 grub: add host support
   http://patchwork.ozlabs.org/patch/177705/
   rbraun at sceen.net

Thanks,

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

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

* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
  2013-10-06 14:42 [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas Petazzoni
@ 2013-10-08 15:17 ` Ludovic Desroches
  2013-10-09  9:34   ` [Buildroot] [PATCH] New: add lava-test package ludovic.desroches at atmel.com
  2013-10-11  8:11 ` [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas De Schampheleire
  1 sibling, 1 reply; 9+ messages in thread
From: Ludovic Desroches @ 2013-10-08 15:17 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, Oct 06, 2013 at 04:42:27PM +0200, Thomas Petazzoni wrote:

[...]

> So, for this first week, the patches are:
> 
>  1 New: add lava-test package
>    http://patchwork.ozlabs.org/patch/155498/
>    ludovic.desroches at atmel.com
> 

I don't know if this package will be used by many people. The interesting
part is to know if the python path is now set correctly (I had something like
this
#!/home/user/MyProjects/versioned/buildroot/output/host/usr/bin/python
instead of #!/usr/bin/python). To be honest I have not tried with newer
versions of Buildroot. I'll do the try.

Regards

Ludovic

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

* [Buildroot] [PATCH] New: add lava-test package
  2013-10-08 15:17 ` Ludovic Desroches
@ 2013-10-09  9:34   ` ludovic.desroches at atmel.com
  2013-10-09 11:55     ` Thomas Petazzoni
  0 siblings, 1 reply; 9+ messages in thread
From: ludovic.desroches at atmel.com @ 2013-10-09  9:34 UTC (permalink / raw)
  To: buildroot

From: Ludovic Desroches <ludovic.desroches@atmel.com>

Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
---

I have the same issues with latest release of Buildroot.

I have added python path replacement in install target instead of doing it in
the post-build script. I have added license stuff too and bump to latest
version.

 package/Config.in              |  1 +
 package/lava-test/Config.in    |  8 ++++++++
 package/lava-test/lava-test.mk | 13 +++++++++++++
 3 files changed, 22 insertions(+)
 create mode 100644 package/lava-test/Config.in
 create mode 100644 package/lava-test/lava-test.mk

diff --git a/package/Config.in b/package/Config.in
index 97cd7da..2bf8313 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -27,6 +27,7 @@ source "package/gdb/Config.in"
 source "package/iozone/Config.in"
 source "package/kexec/Config.in"
 source "package/latencytop/Config.in"
+source "package/lava-test/Config.in"
 source "package/lmbench/Config.in"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/lsof/Config.in"
diff --git a/package/lava-test/Config.in b/package/lava-test/Config.in
new file mode 100644
index 0000000..336ca42
--- /dev/null
+++ b/package/lava-test/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LAVA_TEST
+	bool "lava-test"
+	depends on BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON_SETUPTOOLS
+	help
+	  LAVA Test is a test execution framework designed to make it easy to
+	  install and run supported tests. Results from testing can be
+	  optionally uploaded to a dashboard running lava-dashboard.
diff --git a/package/lava-test/lava-test.mk b/package/lava-test/lava-test.mk
new file mode 100644
index 0000000..bb32b29
--- /dev/null
+++ b/package/lava-test/lava-test.mk
@@ -0,0 +1,13 @@
+LAVA_TEST_VERSION = 0.14
+LAVA_TEST_SOURCE = lava-test-$(LAVA_TEST_VERSION)-2013.01.tar.gz
+LAVA_TEST_SITE = https://launchpad.net/lava-test/trunk/2013.01/+download/
+LAVA_TEST_DEPENDENCIES = python host-python-setuptools
+LAVA_TEST_LICENSE = GPLv3
+LAVA_TEST_LICENSE_FILES = COPYING
+
+define LAVA_TEST_INSTALL_TARGET_CMDS
+  (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=/usr --root=$(TARGET_DIR))
+  sed -i '1s|#!.*python.*|#!/usr/bin/env python|' $(TARGET_DIR)/usr/bin/{lava,lava-dashboard-tool,lava-test,lava-tool}
+endef
+
+$(eval $(generic-package))
-- 
1.7.11.3

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

* [Buildroot] [PATCH] New: add lava-test package
  2013-10-09  9:34   ` [Buildroot] [PATCH] New: add lava-test package ludovic.desroches at atmel.com
@ 2013-10-09 11:55     ` Thomas Petazzoni
  2013-10-09 14:42       ` Ludovic Desroches
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2013-10-09 11:55 UTC (permalink / raw)
  To: buildroot

Dear ludovic.desroches at atmel.com,

On Wed, 9 Oct 2013 11:34:43 +0200, ludovic.desroches at atmel.com wrote:
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
> 
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
> ---
> 
> I have the same issues with latest release of Buildroot.
> 
> I have added python path replacement in install target instead of doing it in
> the post-build script. I have added license stuff too and bump to latest
> version.

And with this change, does lava-test works for you?

Thanks,

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

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

* [Buildroot] [PATCH] New: add lava-test package
  2013-10-09 11:55     ` Thomas Petazzoni
@ 2013-10-09 14:42       ` Ludovic Desroches
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Desroches @ 2013-10-09 14:42 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On Wed, Oct 09, 2013 at 01:55:48PM +0200, Thomas Petazzoni wrote:
> Dear ludovic.desroches at atmel.com,
> 
> On Wed, 9 Oct 2013 11:34:43 +0200, ludovic.desroches at atmel.com wrote:
> > From: Ludovic Desroches <ludovic.desroches@atmel.com>
> > 
> > Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
> > ---
> > 
> > I have the same issues with latest release of Buildroot.
> > 
> > I have added python path replacement in install target instead of doing it in
> > the post-build script. I have added license stuff too and bump to latest
> > version.
> 
> And with this change, does lava-test works for you?
> 

Our lava installation is currently down. I'll see how I can check it.
Since the issue was only python path, I hope it should be working.

Regards

Ludovic

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

* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
  2013-10-06 14:42 [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas Petazzoni
  2013-10-08 15:17 ` Ludovic Desroches
@ 2013-10-11  8:11 ` Thomas De Schampheleire
  2013-10-13 21:18   ` Arnout Vandecappelle
  2013-11-01  8:07   ` Thomas De Schampheleire
  1 sibling, 2 replies; 9+ messages in thread
From: Thomas De Schampheleire @ 2013-10-11  8:11 UTC (permalink / raw)
  To: buildroot

All,

On Sun, Oct 6, 2013 at 4:42 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Hello,
>
> The oldest patches in patchwork don't get a lot of attention (or even
> any attention at all). I had a discussion this week with Thomas De
> Schampheleire, and we would like to progressively clean up the backlog
> of patches we have in patchwork, especially the oldest one.
>
> So, every week, I'll be posting the list of the 10 oldest patches, with
> the original patch contributors in Cc. During one week, we have the
> opportunity to discuss the patch, whether it is still necessary or not,
> how it should be changed to be merged.
>
> In particular, I'm interested in knowing if the original contributor is
> still interested by the patch, or if someone else is interested in
> adopting the patch and sending an updated version, or if the patch no
> longer makes sense due to other changes made in Buildroot.
>
> All patches that have not received any comment or attention within the
> week will be removed from patchwork. This is aggressive, but we have
> patches sitting in patchwork since one year and half, and this cannot
> work.

Five days have past already, let's do an intermediate review:

>
> So, for this first week, the patches are:
>
>  1 New: add lava-test package
>    http://patchwork.ozlabs.org/patch/155498/
>    ludovic.desroches at atmel.com

Ludovic has rebased this patch and is currently testing this.

>
>  2 [v3] busybox: install S41inetd and inetd.conf if inetd is enabled in busybox.
>    http://patchwork.ozlabs.org/patch/164551/
>    keguang.zhang at gmail.com

This patch was already at its third iteration, and has received
comments from Peter and Arnout. At first sight, this could be
respinned with little effort based on the input of Arnout. I'm
reincluding Kelvin Cheung on this mail.
Kelvin, are you interested in resending this based on the input you
received on the last version?

>
>  3 [1/1] ccache: expose control interface via 'make ccache-options'
>    http://patchwork.ozlabs.org/patch/165382/
>    roylee17 at gmail.com

This patch has been updated by Tzu-Jung Lee and is ready to be merged now.

>
>  4 [V2] p910nd: Add p910nd lightweight printserver
>    http://patchwork.ozlabs.org/patch/165542/
>    david.c.purdy at gmail.com

No feedback yet.
In patchwork this is indicated as 'delegated to gustavoz'. Gustavo:
does this mean you are working on this, or plan on working this?

>
>  5 Added package v86d which provides a real-mode helper for uvesafb driver.
>    http://patchwork.ozlabs.org/patch/171840/
>    golubovsky at gmail.com

No feedback yet.

>
>  6 grub: fix stage2 link with recent binutils
>    http://patchwork.ozlabs.org/patch/173191/
>    net147 at gmail.com

This is supposed to fix a runtime bug (when installing grub). It is
including a patch also used on openwrt. This patch applies to grub
0.97 with one 'offset 2 lines' difference, but I'd say this is ok.
The patch against buildroot also applies cleanly. Everything builds correctly.

Although I don't have a setup to test this on, I would say we can
apply this as-is.

>
>  7 valgrind: valgrind/valgrind.h missing if --disable-tls enabled
>    http://patchwork.ozlabs.org/patch/176795/
>    stefan.froberg at petroprogram.com

Stefan: is this still a problem? Are you interested in updating this?
In fact, there is no commit message and I can't link the title with
the actual patch. Some more info would be nice...

>
>  8 [2/2] rdiff-backup: new package
>    http://patchwork.ozlabs.org/patch/176956/
>    avishorp at gmail.com

No feedback yet.

>
>  9 [1/2,v4] package: pkg-generic: Support building override source without copying in common package infrastructure.
>    http://patchwork.ozlabs.org/patch/177618/
>    sonic.adi at gmail.com

If I understand this correctly, it is changing the OVERRIDE_SRCDIR
mechanism to build in the overriden tree, instead of in a copy. I
though we would not support this intentionally, or am I wrong?

>
> 10 grub: add host support
>    http://patchwork.ozlabs.org/patch/177705/
>    rbraun at sceen.net

Arnout: you gave a positive reply on this patch, is it still valid.
Can we merge it as-is, or does the patch need more work? The patch
still applies cleanly and builds fine, however I found the output is
much larger than I expected (although this may be me not understanding
exactly). Is it normal to have grub stages exceeding 100MB ?

$ ls -lh /home/tdescham/repo/contrib/buildroot-review/output/host/boot/grub
total 1,7G
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 e2fs_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 fat_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ffs_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 iso9660_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 jfs_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 minix_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 reiserfs_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 stage1
-rw-r--r-- 1 tdescham tdescham 257M okt 11 10:05 stage2
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ufs2_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 vstafs_stage1_5
-rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 xfs_stage1_5



Thanks all for your input,

Thomas

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

* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
  2013-10-11  8:11 ` [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas De Schampheleire
@ 2013-10-13 21:18   ` Arnout Vandecappelle
  2013-11-01  8:07   ` Thomas De Schampheleire
  1 sibling, 0 replies; 9+ messages in thread
From: Arnout Vandecappelle @ 2013-10-13 21:18 UTC (permalink / raw)
  To: buildroot

On 11/10/13 10:11, Thomas De Schampheleire wrote:
>> 10 grub: add host support
>> >    http://patchwork.ozlabs.org/patch/177705/
>> >    rbraun at sceen.net
> Arnout: you gave a positive reply on this patch, is it still valid.
> Can we merge it as-is, or does the patch need more work? The patch
> still applies cleanly and builds fine, however I found the output is
> much larger than I expected (although this may be me not understanding
> exactly). Is it normal to have grub stages exceeding 100MB ?
>
> $ ls -lh /home/tdescham/repo/contrib/buildroot-review/output/host/boot/grub
> total 1,7G
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 e2fs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 fat_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ffs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 iso9660_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 jfs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 minix_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 reiserfs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 stage1
> -rw-r--r-- 1 tdescham tdescham 257M okt 11 10:05 stage2
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ufs2_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 vstafs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 xfs_stage1_5

  That indeed doesn't look good.

  For some reason, the ELF objects have two load addresses: 0x00002000 
and 0x080480d4. Therefore objdump generates a full 128MB dump filled with 
zeroes. It possibly has to do with recent binutils - this grub 0.97 is 
already more than 8 years old.

  I wouldn't spend too much effort on grub anymore, and instead focus on 
grub2.


  Regards,
  Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
  2013-10-11  8:11 ` [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas De Schampheleire
  2013-10-13 21:18   ` Arnout Vandecappelle
@ 2013-11-01  8:07   ` Thomas De Schampheleire
  2013-11-01  9:57     ` Gustavo Zacarias
  1 sibling, 1 reply; 9+ messages in thread
From: Thomas De Schampheleire @ 2013-11-01  8:07 UTC (permalink / raw)
  To: buildroot

All,

On Fri, Oct 11, 2013 at 10:11 AM, Thomas De Schampheleire
<patrickdepinguin@gmail.com> wrote:
[..]

Here is the outcome of this first patchwork cleanup session:

>
>>
>> So, for this first week, the patches are:
>>
>>  1 New: add lava-test package
>>    http://patchwork.ozlabs.org/patch/155498/
>>    ludovic.desroches at atmel.com
>
> Ludovic has rebased this patch and is currently testing this.

Ludovic updated and resubmitted this patch, thanks!

>
>>
>>  2 [v3] busybox: install S41inetd and inetd.conf if inetd is enabled in busybox.
>>    http://patchwork.ozlabs.org/patch/164551/
>>    keguang.zhang at gmail.com
>
> This patch was already at its third iteration, and has received
> comments from Peter and Arnout. At first sight, this could be
> respinned with little effort based on the input of Arnout. I'm
> reincluding Kelvin Cheung on this mail.
> Kelvin, are you interested in resending this based on the input you
> received on the last version?

No response, marked as Rejected.

>
>>
>>  3 [1/1] ccache: expose control interface via 'make ccache-options'
>>    http://patchwork.ozlabs.org/patch/165382/
>>    roylee17 at gmail.com
>
> This patch has been updated by Tzu-Jung Lee and is ready to be merged now.

Patch has been accepted in buildroot master. Thanks!

>
>>
>>  4 [V2] p910nd: Add p910nd lightweight printserver
>>    http://patchwork.ozlabs.org/patch/165542/
>>    david.c.purdy at gmail.com
>
> No feedback yet.
> In patchwork this is indicated as 'delegated to gustavoz'. Gustavo:
> does this mean you are working on this, or plan on working this?

Gustavo said he would take this up. Marked as 'Changes requested' in patchwork.

>
>>
>>  5 Added package v86d which provides a real-mode helper for uvesafb driver.
>>    http://patchwork.ozlabs.org/patch/171840/
>>    golubovsky at gmail.com
>
> No feedback yet.
>
>>
>>  6 grub: fix stage2 link with recent binutils
>>    http://patchwork.ozlabs.org/patch/173191/
>>    net147 at gmail.com
>
> This is supposed to fix a runtime bug (when installing grub). It is
> including a patch also used on openwrt. This patch applies to grub
> 0.97 with one 'offset 2 lines' difference, but I'd say this is ok.
> The patch against buildroot also applies cleanly. Everything builds correctly.
>
> Although I don't have a setup to test this on, I would say we can
> apply this as-is.
>
>>
>>  7 valgrind: valgrind/valgrind.h missing if --disable-tls enabled
>>    http://patchwork.ozlabs.org/patch/176795/
>>    stefan.froberg at petroprogram.com
>
> Stefan: is this still a problem? Are you interested in updating this?
> In fact, there is no commit message and I can't link the title with
> the actual patch. Some more info would be nice...
>
>>
>>  8 [2/2] rdiff-backup: new package
>>    http://patchwork.ozlabs.org/patch/176956/
>>    avishorp at gmail.com
>
> No feedback yet.
>
>>
>>  9 [1/2,v4] package: pkg-generic: Support building override source without copying in common package infrastructure.
>>    http://patchwork.ozlabs.org/patch/177618/
>>    sonic.adi at gmail.com
>
> If I understand this correctly, it is changing the OVERRIDE_SRCDIR
> mechanism to build in the overriden tree, instead of in a copy. I
> though we would not support this intentionally, or am I wrong?
>
>>
>> 10 grub: add host support
>>    http://patchwork.ozlabs.org/patch/177705/
>>    rbraun at sceen.net
>
> Arnout: you gave a positive reply on this patch, is it still valid.
> Can we merge it as-is, or does the patch need more work? The patch
> still applies cleanly and builds fine, however I found the output is
> much larger than I expected (although this may be me not understanding
> exactly). Is it normal to have grub stages exceeding 100MB ?
>
> $ ls -lh /home/tdescham/repo/contrib/buildroot-review/output/host/boot/grub
> total 1,7G
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 e2fs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 fat_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ffs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 iso9660_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 jfs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 minix_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 reiserfs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:04 stage1
> -rw-r--r-- 1 tdescham tdescham 257M okt 11 10:05 stage2
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 ufs2_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 vstafs_stage1_5
> -rwxr-xr-x 1 tdescham tdescham 129M okt 11 10:05 xfs_stage1_5
>

All the other patches did not receive further feedback, and are thus
marked as Rejected.


Best regards,
Thomas

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

* [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1
  2013-11-01  8:07   ` Thomas De Schampheleire
@ 2013-11-01  9:57     ` Gustavo Zacarias
  0 siblings, 0 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2013-11-01  9:57 UTC (permalink / raw)
  To: buildroot

On 11/01/2013 05:07 AM, Thomas De Schampheleire wrote:

>>>  4 [V2] p910nd: Add p910nd lightweight printserver
>>>    http://patchwork.ozlabs.org/patch/165542/
>>>    david.c.purdy at gmail.com
>>
>> No feedback yet.
>> In patchwork this is indicated as 'delegated to gustavoz'. Gustavo:
>> does this mean you are working on this, or plan on working this?
> 
> Gustavo said he would take this up. Marked as 'Changes requested' in patchwork.

I've got this in my git repo already, i just need to flash it in some
board and plug a printer to it to test the conf/initscript (qemu doesn't
seem to do printer emulation right?).
Regards.

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

end of thread, other threads:[~2013-11-01  9:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-06 14:42 [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas Petazzoni
2013-10-08 15:17 ` Ludovic Desroches
2013-10-09  9:34   ` [Buildroot] [PATCH] New: add lava-test package ludovic.desroches at atmel.com
2013-10-09 11:55     ` Thomas Petazzoni
2013-10-09 14:42       ` Ludovic Desroches
2013-10-11  8:11 ` [Buildroot] Buildroot patchwork: decision on the 10 oldest patches, week 1 Thomas De Schampheleire
2013-10-13 21:18   ` Arnout Vandecappelle
2013-11-01  8:07   ` Thomas De Schampheleire
2013-11-01  9:57     ` Gustavo Zacarias

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.