public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* Linking Error on env_get("loadaddr")
@ 2020-11-02 14:09 ` Oliver Graute
  2020-11-02 21:56   ` Jaehoon Chung
  0 siblings, 1 reply; 3+ messages in thread
From: Oliver Graute @ 2020-11-02 14:09 UTC (permalink / raw)
  To: u-boot

Hello list,

I try to use env_get("loadaddr") for a board specific CMD and included
env.h. But I get the following linking error in nvedit.c. Some clue what
I miss here? I still use v2020.07.

start=$(aarch64-linux-gnu-nm u-boot | grep __rel_dyn_start | cut -f 1 -d ' '); end=$(aarch64-linux-gnu-nm u-boot | grep __rel_dyn_end | cut -f 1 -d ' '); tools/relocate-rela u-boot-nodtb.bin 0x80020000 $start $end
  CC      spl/arch/arm/cpu/armv8/fwcall.o
  LD      spl/arch/arm/cpu/armv8/built-in.o
  CC      spl/common/spl/spl.o
  LD      spl/common/spl/built-in.o
  CC      spl/lib/display_options.o
  LD      spl/lib/built-in.o
  LD      spl/u-boot-spl
cmd/built-in.o: In function `env_match':
/home/graute/u-boot-test/cmd/nvedit.c:804: undefined reference to `env_get_char'
/home/graute/u-boot-test/cmd/nvedit.c:808: undefined reference to `env_get_char'
cmd/built-in.o: In function `env_get_f':
/home/graute/u-boot-test/cmd/nvedit.c:713: undefined reference to `env_get_char'
/home/graute/u-boot-test/cmd/nvedit.c:716: undefined reference to `env_get_char'
/home/graute/u-boot-test/cmd/nvedit.c:729: undefined reference to `env_get_char'
cmd/built-in.o: In function `env_get':
/home/graute/u-boot-test/cmd/nvedit.c:677: undefined reference to `env_htab'
/home/graute/u-boot-test/cmd/nvedit.c:677: undefined reference to `env_htab'
lib/built-in.o: In function `hsearch_r':
/home/graute/u-boot-test/lib/hashtable.c:402: undefined reference to `env_flags_init'
scripts/Makefile.spl:422: recipe for target 'spl/u-boot-spl' failed
make[1]: *** [spl/u-boot-spl] Error 1
Makefile:1926: recipe for target 'spl/u-boot-spl' failed
make: *** [spl/u-boot-spl] Error 2


Best Regards,

Oliver

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

* Linking Error on env_get("loadaddr")
  2020-11-02 14:09 ` Linking Error on env_get("loadaddr") Oliver Graute
@ 2020-11-02 21:56   ` Jaehoon Chung
  2020-11-03  7:11     ` Oliver Graute
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2020-11-02 21:56 UTC (permalink / raw)
  To: u-boot

On 11/2/20 11:09 PM, Oliver Graute wrote:
> Hello list,
> 
> I try to use env_get("loadaddr") for a board specific CMD and included
> env.h. But I get the following linking error in nvedit.c. Some clue what
> I miss here? I still use v2020.07.

Did you check whether CONFIG_SPL_ENV_SUPPORT is enabled?

> 
> start=$(aarch64-linux-gnu-nm u-boot | grep __rel_dyn_start | cut -f 1 -d ' '); end=$(aarch64-linux-gnu-nm u-boot | grep __rel_dyn_end | cut -f 1 -d ' '); tools/relocate-rela u-boot-nodtb.bin 0x80020000 $start $end
>   CC      spl/arch/arm/cpu/armv8/fwcall.o
>   LD      spl/arch/arm/cpu/armv8/built-in.o
>   CC      spl/common/spl/spl.o
>   LD      spl/common/spl/built-in.o
>   CC      spl/lib/display_options.o
>   LD      spl/lib/built-in.o
>   LD      spl/u-boot-spl
> cmd/built-in.o: In function `env_match':
> /home/graute/u-boot-test/cmd/nvedit.c:804: undefined reference to `env_get_char'
> /home/graute/u-boot-test/cmd/nvedit.c:808: undefined reference to `env_get_char'
> cmd/built-in.o: In function `env_get_f':
> /home/graute/u-boot-test/cmd/nvedit.c:713: undefined reference to `env_get_char'
> /home/graute/u-boot-test/cmd/nvedit.c:716: undefined reference to `env_get_char'
> /home/graute/u-boot-test/cmd/nvedit.c:729: undefined reference to `env_get_char'
> cmd/built-in.o: In function `env_get':
> /home/graute/u-boot-test/cmd/nvedit.c:677: undefined reference to `env_htab'
> /home/graute/u-boot-test/cmd/nvedit.c:677: undefined reference to `env_htab'
> lib/built-in.o: In function `hsearch_r':
> /home/graute/u-boot-test/lib/hashtable.c:402: undefined reference to `env_flags_init'
> scripts/Makefile.spl:422: recipe for target 'spl/u-boot-spl' failed
> make[1]: *** [spl/u-boot-spl] Error 1
> Makefile:1926: recipe for target 'spl/u-boot-spl' failed
> make: *** [spl/u-boot-spl] Error 2
> 
> 
> Best Regards,
> 
> Oliver
> 

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

* Linking Error on env_get("loadaddr")
  2020-11-02 21:56   ` Jaehoon Chung
@ 2020-11-03  7:11     ` Oliver Graute
  0 siblings, 0 replies; 3+ messages in thread
From: Oliver Graute @ 2020-11-03  7:11 UTC (permalink / raw)
  To: u-boot

On 03/11/20, Jaehoon Chung wrote:
> On 11/2/20 11:09 PM, Oliver Graute wrote:
> > Hello list,
> > 
> > I try to use env_get("loadaddr") for a board specific CMD and included
> > env.h. But I get the following linking error in nvedit.c. Some clue what
> > I miss here? I still use v2020.07.
> 
> Did you check whether CONFIG_SPL_ENV_SUPPORT is enabled?

thx this solved my issue. 

Best Regards,

Oliver

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

end of thread, other threads:[~2020-11-03  7:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CGME20201102141031epcas1p379a8e0873e822e76cd01d0c01f807ce8@epcas1p3.samsung.com>
2020-11-02 14:09 ` Linking Error on env_get("loadaddr") Oliver Graute
2020-11-02 21:56   ` Jaehoon Chung
2020-11-03  7:11     ` Oliver Graute

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox