All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Generating Buildroot compatible kernel tarball from Git
@ 2014-01-02 11:21 Anmol Sarma
  2014-01-02 11:28 ` Anmol Sarma
  0 siblings, 1 reply; 4+ messages in thread
From: Anmol Sarma @ 2014-01-02 11:21 UTC (permalink / raw)
  To: buildroot

I am trying to modify the default configuration for beaglebone to use a
custom tarball instead of a Git tree. I generated a tarball using:

git archive bb | bzip2 > linux-3.8.13.tar.bz2
-- 
Anmol Sarma
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140102/08601724/attachment-0001.html>

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

* [Buildroot] Generating Buildroot compatible kernel tarball from Git
  2014-01-02 11:21 [Buildroot] Generating Buildroot compatible kernel tarball from Git Anmol Sarma
@ 2014-01-02 11:28 ` Anmol Sarma
  2014-01-02 11:33   ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Anmol Sarma @ 2014-01-02 11:28 UTC (permalink / raw)
  To: buildroot

I am trying to modify the default configuration for BeagleBone to use a
custom tarball instead of a Git tree. I generated a tarball using:

git archive bb | bzip2 > linux-3.8.13.tar.bz2

and modified the defconfig to use the custom tarball but the build fails at
'linux custom Configuring' stage with:
cp "board/beaglebone/linux-3.8.config"
/home/anmol/Code/buildroot-2013.11/output/build/linux-custom/arch/arm/configs/buildroot_defconfig
cp: cannot create regular file
?/home/anmol/Code/buildroot-2013.11/output/build/linux-custom/arch/arm/configs/buildroot_defconfig?:
No such file or directory

I can manually build the kernel by extracting the tarball. I
tried exporting a tarball from the vanilla kennel tree and Buildroot failed
with the same result. What am I doing wrong here?

P.S. Uploaded custom tarball here:
https://www.dropbox.com/s/34wrav0nm24gp27/linux-3.8.13.tar.bz2



On Thu, Jan 2, 2014 at 4:51 PM, Anmol Sarma <unmole.in@gmail.com> wrote:

> I am trying to modify the default configuration for beaglebone to use a
> custom tarball instead of a Git tree. I generated a tarball using:
>
> git archive bb | bzip2 > linux-3.8.13.tar.bz2
> --
> Anmol Sarma
>
>


-- 
Anmol Sarma
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140102/6a564434/attachment.html>

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

* [Buildroot] Generating Buildroot compatible kernel tarball from Git
  2014-01-02 11:28 ` Anmol Sarma
@ 2014-01-02 11:33   ` Yann E. MORIN
  2014-01-02 11:44     ` Anmol Sarma
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2014-01-02 11:33 UTC (permalink / raw)
  To: buildroot

Anmol, All,

On 2014-01-02 16:58 +0530, Anmol Sarma spake thusly:
> I am trying to modify the default configuration for BeagleBone to use a
> custom tarball instead of a Git tree. I generated a tarball using:
> 
> git archive bb | bzip2 > linux-3.8.13.tar.bz2

You forgot the prefix:

    git archive XXXX --prefix=linux/ |bzip2 ....

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] 4+ messages in thread

* [Buildroot] Generating Buildroot compatible kernel tarball from Git
  2014-01-02 11:33   ` Yann E. MORIN
@ 2014-01-02 11:44     ` Anmol Sarma
  0 siblings, 0 replies; 4+ messages in thread
From: Anmol Sarma @ 2014-01-02 11:44 UTC (permalink / raw)
  To: buildroot

Of course! Thanks a bunch, Yann. That fixed it.


On Thu, Jan 2, 2014 at 5:03 PM, Yann E. MORIN <yann.morin.1998@free.fr>wrote:

> Anmol, All,
>
> On 2014-01-02 16:58 +0530, Anmol Sarma spake thusly:
> > I am trying to modify the default configuration for BeagleBone to use a
> > custom tarball instead of a Git tree. I generated a tarball using:
> >
> > git archive bb | bzip2 > linux-3.8.13.tar.bz2
>
> You forgot the prefix:
>
>     git archive XXXX --prefix=linux/ |bzip2 ....
>
> 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.  |
>
> '------------------------------^-------^------------------^--------------------'
>



-- 
Anmol Sarma
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140102/6f0df83e/attachment.html>

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

end of thread, other threads:[~2014-01-02 11:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-02 11:21 [Buildroot] Generating Buildroot compatible kernel tarball from Git Anmol Sarma
2014-01-02 11:28 ` Anmol Sarma
2014-01-02 11:33   ` Yann E. MORIN
2014-01-02 11:44     ` Anmol Sarma

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.