u-boot setenv 的最大行长度?

u-boot setenv 的最大行长度?

我的 u-boot 脚本中有一行如下所示:

# set default Linux kernel boot parameters
setenv bootargs console=ttyPS0,115200 root=/dev/mmcblk0p2 ro rootfstype=ext4 earlyprintk rootwait uio_pdrv_genirq.of_id="generic-uio" fsck.mode=force fsck.repair=yes

使用 setenv 设置 u-boot 变量的最大行长度是多少?我之前看过很长的引用,我想知道什么是最佳实践。

答案1

这个问题已在 StackOverflow 上得到解答,但也适用于此 ---1 个 U-Boot 环境变量的最大字节大小是多少?,即汤姆·里尼的 在这里回答,其中说:

这稍微取决于你在做什么。整体环境限制为 CONFIG_ENV_SIZE。在给定时间可以输入的文本量是 CONFIG_SYS_CBSIZE。

相关内容