3

Odd question, but how big can I make a U-Boot environment variable before it fails?

Essentially what type is a U-boot environment variable?

user_ABCD
  • 347
  • 2
  • 15

1 Answers1

4

It depends slightly on what you're doing. The overall environment is limited to CONFIG_ENV_SIZE. The amount of text you can input at a given time is CONFIG_SYS_CBSIZE.

Tom Rini
  • 2,058
  • 8
  • 11