* [Buildroot] buildroot size ballooned
@ 2008-07-16 3:36 Joseph G. Boike
2008-07-16 3:52 ` Nathanael D. Noblet
0 siblings, 1 reply; 6+ messages in thread
From: Joseph G. Boike @ 2008-07-16 3:36 UTC (permalink / raw)
To: buildroot
Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
With r 225765 and building using at91sam9260dfc_defconfig the filesize
has jumped to ~14M.
Any thoughts on why?
(I have kernel 2.6.26 now. The kernel size has been fairly consistent
around 1.5M.)
Regards,
Joe
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] buildroot size ballooned
2008-07-16 3:36 [Buildroot] buildroot size ballooned Joseph G. Boike
@ 2008-07-16 3:52 ` Nathanael D. Noblet
0 siblings, 0 replies; 6+ messages in thread
From: Nathanael D. Noblet @ 2008-07-16 3:52 UTC (permalink / raw)
To: buildroot
Joseph G. Boike wrote:
> Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
> With r 225765 and building using at91sam9260dfc_defconfig the filesize
> has jumped to ~14M.
> Any thoughts on why?
> (I have kernel 2.6.26 now. The kernel size has been fairly consistent
> around 1.5M.)
No idea, but a clarification, are you talking about buildroot's
outputted final rootfs, or buildroot project in svn?
--
Nathanael d. Noblet
Gnat Solutions, Inc
T: 403.875.4613
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] buildroot size ballooned
[not found] <mailman.29.1216219095.1344.buildroot@uclibc.org>
@ 2008-07-16 15:31 ` Joseph G. Boike
2008-07-16 18:50 ` Thiago A. Corrêa
0 siblings, 1 reply; 6+ messages in thread
From: Joseph G. Boike @ 2008-07-16 15:31 UTC (permalink / raw)
To: buildroot
> Date: Tue, 15 Jul 2008 21:52:10 -0600
> From: "Nathanael D. Noblet" <nathanael@gnat.ca>
> Subject: Re: [Buildroot] buildroot size ballooned
> To: "Joseph G. Boike" <joe.boike@acsatlanta.com>
> Cc: build root <buildroot@uclibc.org>
> Message-ID: <487D706A.30908@gnat.ca>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Joseph G. Boike wrote:
>
>> Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
>> With r 225765 and building using at91sam9260dfc_defconfig the filesize
>> has jumped to ~14M.
>> Any thoughts on why?
>> (I have kernel 2.6.26 now. The kernel size has been fairly consistent
>> around 1.5M.)
>>
>
>
> No idea, but a clarification, are you talking about buildroot's
> outputted final rootfs, or buildroot project in svn?
>
>
The final output file (rootfs.arm-2008xxxx.ext2.gz) to be burned into my
serial flash.
Regards,
Joe
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] buildroot size ballooned
2008-07-16 15:31 ` Joseph G. Boike
@ 2008-07-16 18:50 ` Thiago A. Corrêa
2008-07-16 19:01 ` Chien-Yu Chen
2008-07-17 18:40 ` Joseph G. Boike
0 siblings, 2 replies; 6+ messages in thread
From: Thiago A. Corrêa @ 2008-07-16 18:50 UTC (permalink / raw)
To: buildroot
Most likely there are new packages being enabled on the defconfig. Did
you check that?
On Wed, Jul 16, 2008 at 12:31 PM, Joseph G. Boike
<joe.boike@acsatlanta.com> wrote:
>
>> Date: Tue, 15 Jul 2008 21:52:10 -0600
>> From: "Nathanael D. Noblet" <nathanael@gnat.ca>
>> Subject: Re: [Buildroot] buildroot size ballooned
>> To: "Joseph G. Boike" <joe.boike@acsatlanta.com>
>> Cc: build root <buildroot@uclibc.org>
>> Message-ID: <487D706A.30908@gnat.ca>
>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>>
>> Joseph G. Boike wrote:
>>
>>> Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
>>> With r 225765 and building using at91sam9260dfc_defconfig the filesize
>>> has jumped to ~14M.
>>> Any thoughts on why?
>>> (I have kernel 2.6.26 now. The kernel size has been fairly consistent
>>> around 1.5M.)
>>>
>>
>>
>> No idea, but a clarification, are you talking about buildroot's
>> outputted final rootfs, or buildroot project in svn?
>>
>>
> The final output file (rootfs.arm-2008xxxx.ext2.gz) to be burned into my
> serial flash.
> Regards,
> Joe
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] buildroot size ballooned
2008-07-16 18:50 ` Thiago A. Corrêa
@ 2008-07-16 19:01 ` Chien-Yu Chen
2008-07-17 18:40 ` Joseph G. Boike
1 sibling, 0 replies; 6+ messages in thread
From: Chien-Yu Chen @ 2008-07-16 19:01 UTC (permalink / raw)
To: buildroot
I had a similiar problem. I found out what's going on, but can only use a
dirty trick to avoid the problem...
I enabled initramfs support...so when compiling, kernel compiling in the
filesystem build up so far. then everytime I modify the root file system
and make, somehow, kernel compiling keep the original cpio image from the
previous make, and attach a new copy of the new file system. so the kernel
keep on growing, thus the resulting output file system keep on getting
bigger.
so what I did is to bypass the fakeroot part, since I have a valid
filesystem ready by the time kernel is compiled, I take the final kernel
image, run it through grub and mkisofs to generate the CD image I want. I
eventually want to put it on flash drive...but so far this works for me.
chen
On Wed, Jul 16, 2008 at 1:50 PM, Thiago A. Corr?a <thiago.correa@gmail.com>
wrote:
> Most likely there are new packages being enabled on the defconfig. Did
> you check that?
>
> On Wed, Jul 16, 2008 at 12:31 PM, Joseph G. Boike
> <joe.boike@acsatlanta.com> wrote:
> >
> >> Date: Tue, 15 Jul 2008 21:52:10 -0600
> >> From: "Nathanael D. Noblet" <nathanael@gnat.ca>
> >> Subject: Re: [Buildroot] buildroot size ballooned
> >> To: "Joseph G. Boike" <joe.boike@acsatlanta.com>
> >> Cc: build root <buildroot@uclibc.org>
> >> Message-ID: <487D706A.30908@gnat.ca>
> >> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> >>
> >> Joseph G. Boike wrote:
> >>
> >>> Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
> >>> With r 225765 and building using at91sam9260dfc_defconfig the filesize
> >>> has jumped to ~14M.
> >>> Any thoughts on why?
> >>> (I have kernel 2.6.26 now. The kernel size has been fairly consistent
> >>> around 1.5M.)
> >>>
> >>
> >>
> >> No idea, but a clarification, are you talking about buildroot's
> >> outputted final rootfs, or buildroot project in svn?
> >>
> >>
> > The final output file (rootfs.arm-2008xxxx.ext2.gz) to be burned into my
> > serial flash.
> > Regards,
> > Joe
> > _______________________________________________
> > buildroot mailing list
> > buildroot at uclibc.org
> > http://busybox.net/mailman/listinfo/buildroot
> >
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
>
--
Any MicroSoft extension file will directly go to trash without any warning
and regret.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://busybox.net/lists/buildroot/attachments/20080716/e3abfb5a/attachment.htm
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] buildroot size ballooned
2008-07-16 18:50 ` Thiago A. Corrêa
2008-07-16 19:01 ` Chien-Yu Chen
@ 2008-07-17 18:40 ` Joseph G. Boike
1 sibling, 0 replies; 6+ messages in thread
From: Joseph G. Boike @ 2008-07-17 18:40 UTC (permalink / raw)
To: buildroot
I had thought about that and have tried removing packages but haven't
found the source of the largess yet.
Is there an easy way to find out the sizes of parts of the final image
to see if something looks out of line?
(I don't think I have the same problem that Chien-Yu Chen referenced,
since my buildroot and kernel images are not increasing in size with
each build.)
Regards,
Joe
Thiago A. Corr?a wrote:
> Most likely there are new packages being enabled on the defconfig. Did
> you check that?
>
> On Wed, Jul 16, 2008 at 12:31 PM, Joseph G. Boike
> <joe.boike@acsatlanta.com> wrote:
>
>>> Date: Tue, 15 Jul 2008 21:52:10 -0600
>>> From: "Nathanael D. Noblet" <nathanael@gnat.ca>
>>> Subject: Re: [Buildroot] buildroot size ballooned
>>> To: "Joseph G. Boike" <joe.boike@acsatlanta.com>
>>> Cc: build root <buildroot@uclibc.org>
>>> Message-ID: <487D706A.30908@gnat.ca>
>>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>>>
>>> Joseph G. Boike wrote:
>>>
>>>
>>>> Hi, my buildroot filesize had been around 3-4M (w/ r 22508)
>>>> With r 225765 and building using at91sam9260dfc_defconfig the filesize
>>>> has jumped to ~14M.
>>>> Any thoughts on why?
>>>> (I have kernel 2.6.26 now. The kernel size has been fairly consistent
>>>> around 1.5M.)
>>>>
>>>>
>>> No idea, but a clarification, are you talking about buildroot's
>>> outputted final rootfs, or buildroot project in svn?
>>>
>>>
>>>
>> The final output file (rootfs.arm-2008xxxx.ext2.gz) to be burned into my
>> serial flash.
>> Regards,
>> Joe
>> _______________________________________________
>> buildroot mailing list
>> buildroot at uclibc.org
>> http://busybox.net/mailman/listinfo/buildroot
>>
>>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-07-17 18:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-16 3:36 [Buildroot] buildroot size ballooned Joseph G. Boike
2008-07-16 3:52 ` Nathanael D. Noblet
[not found] <mailman.29.1216219095.1344.buildroot@uclibc.org>
2008-07-16 15:31 ` Joseph G. Boike
2008-07-16 18:50 ` Thiago A. Corrêa
2008-07-16 19:01 ` Chien-Yu Chen
2008-07-17 18:40 ` Joseph G. Boike
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox