All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [Bug 1213] New: Move .config into output directory
@ 2010-03-01 19:08 bugzilla at busybox.net
  2010-03-17 15:23 ` [Buildroot] [Bug 1213] " bugzilla at busybox.net
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-03-01 19:08 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213

           Summary: Move .config into output directory
           Product: buildroot
           Version: unspecified
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: Other
        AssignedTo: unassigned at buildroot.uclibc.org
        ReportedBy: will_wagner at carallon.com
                CC: buildroot at uclibc.org
   Estimated Hours: 0.0


Created an attachment (id=1177)
 --> (https://bugs.busybox.net/attachment.cgi?id=1177)
Move .config into output directory

Currently buildroot places most files generated by the build in the output
directory (which can be overriden with O=). However a number of files remain
within the buildroot tree.

These are:
.auto.deps (incidentally this no longer seems to be used)
.config
.config.cmd
.config.old
package/config/buildroot-config (which then gets copied into output/build) 

This is a problem if you want to use the same buildroot directory to
simultaneously build two different targets to locations elsewhere in the
filesystem with O= 

The patch modifies config and the top level Makefile so that all files reside
in the output folder. Feedback welcome. Could go further and tidy some things
up as well but have not done so. In particular we generate .auto.deps but never
seem to use it. Also have not updated
package/config/kconfig-to-buildroot2.patch as the previous patch was old and
the instructions on how to generate it were incorrect.


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
@ 2010-03-17 15:23 ` bugzilla at busybox.net
  2010-03-19  8:44 ` bugzilla at busybox.net
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-03-17 15:23 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213





--- Comment #1 from Grant Edwards <grant.b.edwards@gmail.com>  2010-03-17 15:23:26 UTC ---
Well done.

The patch works for me.

Doing a build no longer contaminates the source tree which prevented
one from using a single source tree to build for two different
configurations or targets.

And "make distclean" now does what it's supposed to. :)


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
  2010-03-17 15:23 ` [Buildroot] [Bug 1213] " bugzilla at busybox.net
@ 2010-03-19  8:44 ` bugzilla at busybox.net
  2010-03-19 12:16   ` Bjørn Forsman
  2010-04-01 16:04 ` bugzilla at busybox.net
                   ` (11 subsequent siblings)
  13 siblings, 1 reply; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-03-19  8:44 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Peter Korsgaard <jacmet@uclibc.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED




--- Comment #2 from Peter Korsgaard <jacmet@uclibc.org>  2010-03-19 08:44:30 UTC ---
(In reply to comment #0)

> The patch modifies config and the top level Makefile so that all files reside
> in the output folder. Feedback welcome. Could go further and tidy some things
> up as well but have not done so. In particular we generate .auto.deps but never
> seem to use it. Also have not updated
> package/config/kconfig-to-buildroot2.patch as the previous patch was old and
> the instructions on how to generate it were incorrect.

Thanks, it looks very interesting. I have given it a quick try and see two
things I would like to change:

 - The .config location has moved to output/.config if you don't use O=. I
would prefer to keep it like it is for non-O= builds (easy to do by adding
something like CONFIG_DIR that is either set to $(TOPDIR) or $(O) depending on
if O is passed.

 - Some temporary files are still written to TOPDIR, breaking the renames when
O= points to another file system:

[pid 28140] rename("/tmp/br/.config", "/tmp/br/.config.old") = 0
[pid 28140] rename(".tmpconfig.28140", "/tmp/br/.config") = -1 EXDEV (Invalid
cross-device link)
[pid 28140] write(2, "\n*** Error during writing of the"..., 59
*** Error during writing of the Buildroot configuration.

I'll have a closer look at fixing this next week, unless someone beats me to
it.


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-19  8:44 ` bugzilla at busybox.net
@ 2010-03-19 12:16   ` Bjørn Forsman
  0 siblings, 0 replies; 16+ messages in thread
From: Bjørn Forsman @ 2010-03-19 12:16 UTC (permalink / raw)
  To: buildroot

Hi,

I have no bugzilla account so I hope it's OK to reply to a bugzilla
comment on the mailing list.

On 19 March 2010 09:44,  <bugzilla@busybox.net> wrote:
> --- Comment #2 from Peter Korsgaard <jacmet@uclibc.org> ?2010-03-19 08:44:30 UTC ---
> (In reply to comment #0)
>
>> The patch modifies config and the top level Makefile so that all files reside
>> in the output folder. Feedback welcome. Could go further and tidy some things
>> up as well but have not done so. In particular we generate .auto.deps but never
>> seem to use it. Also have not updated
>> package/config/kconfig-to-buildroot2.patch as the previous patch was old and
>> the instructions on how to generate it were incorrect.
>
> Thanks, it looks very interesting. I have given it a quick try and see two
> things I would like to change:
>
> ?- The .config location has moved to output/.config if you don't use O=. I
> would prefer to keep it like it is for non-O= builds (easy to do by adding
> something like CONFIG_DIR that is either set to $(TOPDIR) or $(O) depending on
> if O is passed.

I like this change. That is, having .config and *all* output in the ouptut
directory. I have a suggestion: how about letting the .config file in top dir
set $(O)? If there is no .config in top dir (or it does not set $(O))
fall back to O=output. And always put the *real* config file into $(O)/.config.

By using top dir .config for $(O) one does not have to set O on the command
line or in the environment. Which I think is nice.

When I think about it, maybe the top dir config file I had in mind (the one
that only sets O) should not be hidden. I think the current .config is hidden
only because one should use menuconfig to edit it, and not do it by hand. But
if we change the meaning of top dir config file, we may want to rename it.

> I'll have a closer look at fixing this next week, unless someone beats me to
> it.

Great!

Best regards,
Bj?rn Forsman

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
  2010-03-17 15:23 ` [Buildroot] [Bug 1213] " bugzilla at busybox.net
  2010-03-19  8:44 ` bugzilla at busybox.net
@ 2010-04-01 16:04 ` bugzilla at busybox.net
  2010-04-01 16:06 ` bugzilla at busybox.net
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-01 16:04 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Will Wagner <will_wagner@carallon.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
Attachment #1177 is|0                           |1
           obsolete|                            |




--- Comment #3 from Will Wagner <will_wagner@carallon.com>  2010-04-01 16:04:29 UTC ---
Created an attachment (id=1453)
 --> (https://bugs.busybox.net/attachment.cgi?id=1453)
Revised patch following feedback

Have updated the patch to fix both the issues.

Change to have .config files in buildroot dir id O= not specified was simple.

Modifying config to put temp files in O= folder was relatively straight
forward, although obviously it is straying quite a long way from the original
kernel source.


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (2 preceding siblings ...)
  2010-04-01 16:04 ` bugzilla at busybox.net
@ 2010-04-01 16:06 ` bugzilla at busybox.net
  2010-04-01 16:10 ` bugzilla at busybox.net
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-01 16:06 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Will Wagner <will_wagner@carallon.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
Attachment #1453 is|0                           |1
           obsolete|                            |




--- Comment #4 from Will Wagner <will_wagner@carallon.com>  2010-04-01 16:06:42 UTC ---
(From update of attachment 1453)
Sorry this patch is bogus, my text editor has converted all the tabs to spaces.

Will fix and attach a new patch


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (3 preceding siblings ...)
  2010-04-01 16:06 ` bugzilla at busybox.net
@ 2010-04-01 16:10 ` bugzilla at busybox.net
  2010-04-09 10:42 ` bugzilla at busybox.net
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-01 16:10 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213





--- Comment #5 from Will Wagner <will_wagner@carallon.com>  2010-04-01 16:10:51 UTC ---
Created an attachment (id=1459)
 --> (https://bugs.busybox.net/attachment.cgi?id=1459)
Patch with correct tabbing

This patch has suggested changes as well as the correct tabbing :)


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (4 preceding siblings ...)
  2010-04-01 16:10 ` bugzilla at busybox.net
@ 2010-04-09 10:42 ` bugzilla at busybox.net
  2010-04-09 14:43 ` bugzilla at busybox.net
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-09 10:42 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Nick Leverton <nick@leverton.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nick at leverton.org




--- Comment #6 from Nick Leverton <nick@leverton.org>  2010-04-09 10:42:29 UTC ---
Good work, thanks !  Works for make menuconfig; make; make clean.  There still
seems to be a cross-device issue with "make oldconfig" though.  I'd like to be
able to check out a project's .config file into an empty directory, and just do
something like "make O=directory_name oldconfig && make O=directory_name ".

3737  11:32:19.501549 open("/var/tmp/buildroot.test/.config", O_RDONLY) = 3
3737  11:32:19.501760 fstat64(3, {st_mode=S_IFREG|0644, st_size=18954, ...}) =
0
3737  11:32:19.501906 mmap2(NULL, 4096, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40020000
3737  11:32:19.502030 read(3, "#\n# Automatically generated make "..., 4096) =
4096
3737  11:32:19.502265 read(3, "ERSION_4_3_3 is not set\n# BR2_GCC"..., 4096) =
4096
3737  11:32:19.502470 read(3, "\n# BR2_PACKAGE_ARGUS is not set\n#"..., 4096) =
4096
3737  11:32:19.502649 read(3, "NT is not set\n# BR2_PACKAGE_USBUT"..., 4096) =
4096
3737  11:32:19.502878 read(3, "not set\n# BR2_TARGET_ROOTFS_INITR"..., 4096) =
2570
3737  11:32:19.503029 read(3, ""..., 4096) = 0
3737  11:32:19.505067 close(3)          = 0
3737  11:32:19.505182 munmap(0x40020000, 4096) = 0
3737  11:32:19.506235 getpid()          = 3737
3737  11:32:19.506343 open(".tmpconfig.3737", O_WRONLY|O_CREAT|O_TRUNC, 0666) =
3
3737  11:32:19.506523 time(NULL)        = 1270809139

...snips....

3737  11:32:19.510083 write(3, "#\n# Automatically generated make "..., 4096) =
4096
3737  11:32:19.510371 write(3, "ERSION_4_3_3 is not set\n# BR2_GCC"..., 4096) =
4096
3737  11:32:19.510633 write(3, "\n# BR2_PACKAGE_ARGUS is not set\n#"..., 4096)
= 4096
3737  11:32:19.511038 write(3, "NT is not set\n# BR2_PACKAGE_USBUT"..., 4096) =
4096
3737  11:32:19.511275 write(3, "not set\n# BR2_TARGET_ROOTFS_INITR"..., 2570) =
2570
3737  11:32:19.511410 close(3)          = 0
3737  11:32:19.511538 munmap(0x40027000, 4096) = 0
3737  11:32:19.511657 rename("/var/tmp/buildroot.test/.config",
"/var/tmp/buildroot.test/.config.old") = 0
3737  11:32:19.511900 rename(".tmpconfig.3737",
"/var/tmp/buildroot.test/.config") = -1 EXDEV (Invalid cross-device link)
3737  11:32:19.512050 write(2, "\n*** Error during writing of the "..., 59) =
59
3737  11:32:19.512202 exit_group(1)     = ?
3711  11:32:19.512471 <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) ==
1}], 0, NULL) = 3737


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (5 preceding siblings ...)
  2010-04-09 10:42 ` bugzilla at busybox.net
@ 2010-04-09 14:43 ` bugzilla at busybox.net
  2010-04-09 16:46 ` bugzilla at busybox.net
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-09 14:43 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Thomas Petazzoni <thomas.petazzoni@free-electrons.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at buildroot.uclibc.|will_wagner at carallon.com
                   |org                         |
             Status|ASSIGNED                    |NEW




-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (6 preceding siblings ...)
  2010-04-09 14:43 ` bugzilla at busybox.net
@ 2010-04-09 16:46 ` bugzilla at busybox.net
  2010-04-13 16:13 ` bugzilla at busybox.net
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-09 16:46 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Will Wagner <will_wagner@carallon.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
Attachment #1459 is|0                           |1
           obsolete|                            |




--- Comment #7 from Will Wagner <will_wagner@carallon.com>  2010-04-09 16:46:28 UTC ---
Created an attachment (id=1495)
 --> (https://bugs.busybox.net/attachment.cgi?id=1495)
Fixed missed renames

Your right, I missed a case. I also noticed I managed to build .auto.deps wrong
(although I still think no one ever uses it).

Please try this patch out, hopefully all done now.


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (7 preceding siblings ...)
  2010-04-09 16:46 ` bugzilla at busybox.net
@ 2010-04-13 16:13 ` bugzilla at busybox.net
  2010-04-14 10:56 ` bugzilla at busybox.net
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-13 16:13 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213





--- Comment #8 from Nick Leverton <nick@leverton.org>  2010-04-13 16:13:48 UTC ---
That's good, works fine !  Although there was an error in applying it against
BR2010.02 - it looks as if it might have been generated against an already
part-patched source.  I'm attaching a version with the extra lines removed,
which applied with just a few offsets.  Would you have a look at it for me
please ?


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (8 preceding siblings ...)
  2010-04-13 16:13 ` bugzilla at busybox.net
@ 2010-04-14 10:56 ` bugzilla at busybox.net
  2010-04-14 11:23 ` bugzilla at busybox.net
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-14 10:56 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213





--- Comment #9 from Nick Leverton <nick@leverton.org>  2010-04-14 10:56:47 UTC ---
Created an attachment (id=1507)
 --> (https://bugs.busybox.net/attachment.cgi?id=1507)
As in "Fixed missed renames" but based on clean BR2010.02


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (9 preceding siblings ...)
  2010-04-14 10:56 ` bugzilla at busybox.net
@ 2010-04-14 11:23 ` bugzilla at busybox.net
  2010-06-09 18:25 ` bugzilla at busybox.net
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-04-14 11:23 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213


Will Wagner <will_wagner@carallon.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
Attachment #1495 is|0                           |1
           obsolete|                            |
Attachment #1507 is|0                           |1
           obsolete|                            |




--- Comment #10 from Will Wagner <will_wagner@carallon.com>  2010-04-14 11:23:01 UTC ---
Created an attachment (id=1513)
 --> (https://bugs.busybox.net/attachment.cgi?id=1513)
Patch rebased to git master

Nick,

The patch is meant to patch against latest git master, not 2010.2.

Have updated to latest git, and added Ack from you.

Peter, could this get another review from you? I think everything is now fixed
- should I mark the bug fixed? Presumably you'll do that when you commit it?


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (10 preceding siblings ...)
  2010-04-14 11:23 ` bugzilla at busybox.net
@ 2010-06-09 18:25 ` bugzilla at busybox.net
  2010-06-09 19:12 ` bugzilla at busybox.net
  2010-06-21 21:08 ` bugzilla at busybox.net
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-06-09 18:25 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213

Will Wagner <will_wagner@carallon.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #1513|0                           |1
        is obsolete|                            |

--- Comment #11 from Will Wagner <will_wagner@carallon.com>  ---
Created attachment 2005
  --> https://bugs.busybox.net/attachment.cgi?id=2005
Patched rebase to master

Updated patch rebase to latest master. Not tested the gconf option but I think
it should just work.

Peter, any chance of inclusion this development cycle?

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (11 preceding siblings ...)
  2010-06-09 18:25 ` bugzilla at busybox.net
@ 2010-06-09 19:12 ` bugzilla at busybox.net
  2010-06-21 21:08 ` bugzilla at busybox.net
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-06-09 19:12 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213

Peter Korsgaard <jacmet@uclibc.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

--- Comment #12 from Peter Korsgaard <jacmet@uclibc.org>  ---
(In reply to comment #11)

> Updated patch rebase to latest master. Not tested the gconf option but I think
> it should just work.

Thanks.

> Peter, any chance of inclusion this development cycle?

Yes, certainly. I'll test it a bit and commit if/when I'm happy with it.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 1213] Move .config into output directory
  2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
                   ` (12 preceding siblings ...)
  2010-06-09 19:12 ` bugzilla at busybox.net
@ 2010-06-21 21:08 ` bugzilla at busybox.net
  13 siblings, 0 replies; 16+ messages in thread
From: bugzilla at busybox.net @ 2010-06-21 21:08 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=1213

Peter Korsgaard <jacmet@uclibc.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #13 from Peter Korsgaard <jacmet@uclibc.org>  ---
Committed, thanks. There were a few small issues regarding make
<blah>_defconfig, but I fixed that.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

end of thread, other threads:[~2010-06-21 21:08 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-01 19:08 [Buildroot] [Bug 1213] New: Move .config into output directory bugzilla at busybox.net
2010-03-17 15:23 ` [Buildroot] [Bug 1213] " bugzilla at busybox.net
2010-03-19  8:44 ` bugzilla at busybox.net
2010-03-19 12:16   ` Bjørn Forsman
2010-04-01 16:04 ` bugzilla at busybox.net
2010-04-01 16:06 ` bugzilla at busybox.net
2010-04-01 16:10 ` bugzilla at busybox.net
2010-04-09 10:42 ` bugzilla at busybox.net
2010-04-09 14:43 ` bugzilla at busybox.net
2010-04-09 16:46 ` bugzilla at busybox.net
2010-04-13 16:13 ` bugzilla at busybox.net
2010-04-14 10:56 ` bugzilla at busybox.net
2010-04-14 11:23 ` bugzilla at busybox.net
2010-06-09 18:25 ` bugzilla at busybox.net
2010-06-09 19:12 ` bugzilla at busybox.net
2010-06-21 21:08 ` bugzilla at busybox.net

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.