All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Problem building am335x_evm config
@ 2014-05-04 10:56 Vasili Galka
  2014-05-04 11:12 ` Belisko Marek
  0 siblings, 1 reply; 8+ messages in thread
From: Vasili Galka @ 2014-05-04 10:56 UTC (permalink / raw)
  To: u-boot

Hi,

I'm having some very basic problem with building u-boot. Using clean
v2014.04 checkout, I run config:

make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm_config

Which passes fine. But when I run the actual build after that I'm getting
an error:

$ make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
  GEN     include/autoconf.mk.dep
  GEN     include/autoconf.mk
make[1]: *** No rule to make target 'am335x_evm'.  Stop.
Makefile:138: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2

What am I doing wrong?

Best regards,
Vasili

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 10:56 [U-Boot] Problem building am335x_evm config Vasili Galka
@ 2014-05-04 11:12 ` Belisko Marek
  2014-05-04 11:18   ` Vasili Galka
  0 siblings, 1 reply; 8+ messages in thread
From: Belisko Marek @ 2014-05-04 11:12 UTC (permalink / raw)
  To: u-boot

Hi Vasisli,

On Sun, May 4, 2014 at 12:56 PM, Vasili Galka <vvv444@gmail.com> wrote:
> Hi,
>
> I'm having some very basic problem with building u-boot. Using clean
> v2014.04 checkout, I run config:
>
> make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm_config
Add to parameters also ARCH=arm
>
> Which passes fine. But when I run the actual build after that I'm getting
> an error:
>
> $ make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
>   GEN     include/autoconf.mk.dep
>   GEN     include/autoconf.mk
> make[1]: *** No rule to make target 'am335x_evm'.  Stop.
> Makefile:138: recipe for target 'sub-make' failed
> make: *** [sub-make] Error 2
>
> What am I doing wrong?
>
> Best regards,
> Vasili
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

BR,

marek

-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 11:12 ` Belisko Marek
@ 2014-05-04 11:18   ` Vasili Galka
  2014-05-04 11:24     ` Belisko Marek
  0 siblings, 1 reply; 8+ messages in thread
From: Vasili Galka @ 2014-05-04 11:18 UTC (permalink / raw)
  To: u-boot

Hi Marek,

I've followed your advice and tried the following two on clean tree:

make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
am335x_evm_config

make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm

Unfortunately, this does not help. I'm still getting the same error.

Best,
Vasili



On Sun, May 4, 2014 at 2:12 PM, Belisko Marek <marek.belisko@gmail.com>wrote:

> Hi Vasisli,
>
> On Sun, May 4, 2014 at 12:56 PM, Vasili Galka <vvv444@gmail.com> wrote:
> > Hi,
> >
> > I'm having some very basic problem with building u-boot. Using clean
> > v2014.04 checkout, I run config:
> >
> > make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm_config
> Add to parameters also ARCH=arm
> >
> > Which passes fine. But when I run the actual build after that I'm getting
> > an error:
> >
> > $ make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
> >   GEN     include/autoconf.mk.dep
> >   GEN     include/autoconf.mk
> > make[1]: *** No rule to make target 'am335x_evm'.  Stop.
> > Makefile:138: recipe for target 'sub-make' failed
> > make: *** [sub-make] Error 2
> >
> > What am I doing wrong?
> >
> > Best regards,
> > Vasili
> >
> > _______________________________________________
> > U-Boot mailing list
> > U-Boot at lists.denx.de
> > http://lists.denx.de/mailman/listinfo/u-boot
> >
>
> BR,
>
> marek
>
> --
> as simple and primitive as possible
> -------------------------------------------------
> Marek Belisko - OPEN-NANDRA
> Freelance Developer
>
> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> Tel: +421 915 052 184
> skype: marekwhite
> twitter: #opennandra
> web: http://open-nandra.com
>

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 11:18   ` Vasili Galka
@ 2014-05-04 11:24     ` Belisko Marek
  2014-05-04 11:48       ` Vasili Galka
  0 siblings, 1 reply; 8+ messages in thread
From: Belisko Marek @ 2014-05-04 11:24 UTC (permalink / raw)
  To: u-boot

Hi Vasili,

please do not top post.

On Sun, May 4, 2014 at 1:18 PM, Vasili Galka <vvv444@gmail.com> wrote:
> Hi Marek,
>
> I've followed your advice and tried the following two on clean tree:
>
> make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
> am335x_evm_config
>
> make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
>
> Unfortunately, this does not help. I'm still getting the same error.
Try:
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_evm_defconfig
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

it works for me (please update your CROSS_COMPILE)

>
> Best,
> Vasili
>
>
>
> On Sun, May 4, 2014 at 2:12 PM, Belisko Marek <marek.belisko@gmail.com>
> wrote:
>>
>> Hi Vasisli,
>>
>> On Sun, May 4, 2014 at 12:56 PM, Vasili Galka <vvv444@gmail.com> wrote:
>> > Hi,
>> >
>> > I'm having some very basic problem with building u-boot. Using clean
>> > v2014.04 checkout, I run config:
>> >
>> > make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm_config
>> Add to parameters also ARCH=arm
>> >
>> > Which passes fine. But when I run the actual build after that I'm
>> > getting
>> > an error:
>> >
>> > $ make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
>> >   GEN     include/autoconf.mk.dep
>> >   GEN     include/autoconf.mk
>> > make[1]: *** No rule to make target 'am335x_evm'.  Stop.
>> > Makefile:138: recipe for target 'sub-make' failed
>> > make: *** [sub-make] Error 2
>> >
>> > What am I doing wrong?
>> >
>> > Best regards,
>> > Vasili
>> >
>> > _______________________________________________
>> > U-Boot mailing list
>> > U-Boot at lists.denx.de
>> > http://lists.denx.de/mailman/listinfo/u-boot
>> >
>>
>> BR,
>>
>> marek
>>
>> --
>> as simple and primitive as possible
>> -------------------------------------------------
>> Marek Belisko - OPEN-NANDRA
>> Freelance Developer
>>
>> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
>> Tel: +421 915 052 184
>> skype: marekwhite
>> twitter: #opennandra
>> web: http://open-nandra.com
>
>

BR,

marek


-- 
as simple and primitive as possible
-------------------------------------------------
Marek Belisko - OPEN-NANDRA
Freelance Developer

Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
Tel: +421 915 052 184
skype: marekwhite
twitter: #opennandra
web: http://open-nandra.com

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 11:24     ` Belisko Marek
@ 2014-05-04 11:48       ` Vasili Galka
  2014-05-04 13:12         ` Jeroen Hofstee
  2014-05-06 17:33         ` Jonathan Cormier
  0 siblings, 2 replies; 8+ messages in thread
From: Vasili Galka @ 2014-05-04 11:48 UTC (permalink / raw)
  To: u-boot

On Sun, May 4, 2014 at 2:24 PM, Belisko Marek <marek.belisko@gmail.com>wrote:

> Hi Vasili,
>
> please do not top post.
>
> On Sun, May 4, 2014 at 1:18 PM, Vasili Galka <vvv444@gmail.com> wrote:
> > Hi Marek,
> >
> > I've followed your advice and tried the following two on clean tree:
> >
> > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
> > am335x_evm_config
> >
> > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
> >
> > Unfortunately, this does not help. I'm still getting the same error.
> Try:
> make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_evm_defconfig
> make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
>
> it works for me (please update your CROSS_COMPILE)
>
> >
> > Best,
> > Vasili
> >
> >
> >
> > On Sun, May 4, 2014 at 2:12 PM, Belisko Marek <marek.belisko@gmail.com>
> > wrote:
> >>
> >> Hi Vasisli,
> >>
> >> On Sun, May 4, 2014 at 12:56 PM, Vasili Galka <vvv444@gmail.com> wrote:
> >> > Hi,
> >> >
> >> > I'm having some very basic problem with building u-boot. Using clean
> >> > v2014.04 checkout, I run config:
> >> >
> >> > make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm_config
> >> Add to parameters also ARCH=arm
> >> >
> >> > Which passes fine. But when I run the actual build after that I'm
> >> > getting
> >> > an error:
> >> >
> >> > $ make CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
> >> >   GEN     include/autoconf.mk.dep
> >> >   GEN     include/autoconf.mk
> >> > make[1]: *** No rule to make target 'am335x_evm'.  Stop.
> >> > Makefile:138: recipe for target 'sub-make' failed
> >> > make: *** [sub-make] Error 2
> >> >
> >> > What am I doing wrong?
> >> >
> >> > Best regards,
> >> > Vasili
> >> >
> >> > _______________________________________________
> >> > U-Boot mailing list
> >> > U-Boot at lists.denx.de
> >> > http://lists.denx.de/mailman/listinfo/u-boot
> >> >
> >>
> >> BR,
> >>
> >> marek
> >>
> >> --
> >> as simple and primitive as possible
> >> -------------------------------------------------
> >> Marek Belisko - OPEN-NANDRA
> >> Freelance Developer
> >>
> >> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> >> Tel: +421 915 052 184
> >> skype: marekwhite
> >> twitter: #opennandra
> >> web: http://open-nandra.com
> >
> >
>
> BR,
>
> marek
>
>
> --
> as simple and primitive as possible
> -------------------------------------------------
> Marek Belisko - OPEN-NANDRA
> Freelance Developer
>
> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> Tel: +421 915 052 184
> skype: marekwhite
> twitter: #opennandra
> web: http://open-nandra.com
>

Dear Marek,

First, many thanks for your help!
Second, please excuse me if I did something wrong, that was merely of
inexperience, hope now it is fine.
Third, maybe I should have described my configuration a little more on the
beginning, as it is not totally standard:

I'm building on Cygwin using arm-none-eabi tool-chain that I've built
myself. Up until now I was working on v2013.10 based branch and all was
building fine. Today I wanted to migrate to v2014.04 bumped into the above
problem. I don't fully understand why my tool-chain is not good enough for
the newer branch and what I shall do now.

Looking forward for your advice.

Regards,
Vasili

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 11:48       ` Vasili Galka
@ 2014-05-04 13:12         ` Jeroen Hofstee
  2014-05-04 15:12           ` Vasili Galka
  2014-05-06 17:33         ` Jonathan Cormier
  1 sibling, 1 reply; 8+ messages in thread
From: Jeroen Hofstee @ 2014-05-04 13:12 UTC (permalink / raw)
  To: u-boot

Hello Vasili,

On zo, 2014-05-04 at 14:48 +0300, Vasili Galka wrote:
> On Sun, May 4, 2014 at 2:24 PM, Belisko Marek <marek.belisko@gmail.com>wrote:
> 
> > >
> > > I've followed your advice and tried the following two on clean tree:
> > >
> > > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
> > > am335x_evm_config
> > >
> > > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm am335x_evm
> > >
> > > Unfortunately, this does not help. I'm still getting the same error.
> > Try:
> > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_evm_defconfig
> > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
> >
> > it works for me (please update your CROSS_COMPILE)
> >

As Marek showed above, just use make after configure. I.o.w. remove
the board name as an argument to the second make command.

Regards,
Jeroen

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 13:12         ` Jeroen Hofstee
@ 2014-05-04 15:12           ` Vasili Galka
  0 siblings, 0 replies; 8+ messages in thread
From: Vasili Galka @ 2014-05-04 15:12 UTC (permalink / raw)
  To: u-boot

On Sun, May 4, 2014 at 4:12 PM, Jeroen Hofstee <dasuboot@myspectrum.nl>wrote:

> Hello Vasili,
>
> On zo, 2014-05-04 at 14:48 +0300, Vasili Galka wrote:
> > On Sun, May 4, 2014 at 2:24 PM, Belisko Marek <marek.belisko@gmail.com
> >wrote:
> >
> > > >
> > > > I've followed your advice and tried the following two on clean tree:
> > > >
> > > > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
> > > > am335x_evm_config
> > > >
> > > > make ARCH=arm CROSS_COMPILE=arm-none-eabi- O=out/am335x_evm
> am335x_evm
> > > >
> > > > Unfortunately, this does not help. I'm still getting the same error.
> > > Try:
> > > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_evm_defconfig
> > > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
> > >
> > > it works for me (please update your CROSS_COMPILE)
> > >
>
> As Marek showed above, just use make after configure. I.o.w. remove
> the board name as an argument to the second make command.
>
> Regards,
> Jeroen
>
>
Oh, I see. Missed this. Thank you guys!

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

* [U-Boot] Problem building am335x_evm config
  2014-05-04 11:48       ` Vasili Galka
  2014-05-04 13:12         ` Jeroen Hofstee
@ 2014-05-06 17:33         ` Jonathan Cormier
  1 sibling, 0 replies; 8+ messages in thread
From: Jonathan Cormier @ 2014-05-06 17:33 UTC (permalink / raw)
  To: u-boot

> > Try:
> > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_evm_defconfig
> > make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
> >
> > it works for me (please update your CROSS_COMPILE)
> >

Vasili,

There was a change in 2014.04.  After you run the *_defconfig you don't have
to (Shouldn't) add am335x_evm to make.  See above for correct procedure now.

-Jonathan Cormier
jcormier at criticallink.com

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

end of thread, other threads:[~2014-05-06 17:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-04 10:56 [U-Boot] Problem building am335x_evm config Vasili Galka
2014-05-04 11:12 ` Belisko Marek
2014-05-04 11:18   ` Vasili Galka
2014-05-04 11:24     ` Belisko Marek
2014-05-04 11:48       ` Vasili Galka
2014-05-04 13:12         ` Jeroen Hofstee
2014-05-04 15:12           ` Vasili Galka
2014-05-06 17:33         ` Jonathan Cormier

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.