Reputation: 347
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?
Upvotes: 3
Views: 2003
Reputation: 2173
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.
Upvotes: 4