
Dear Simon,
In message 20211002003848.1803446-3-sjg@chromium.org you wrote:
+baudrate
- see CONFIG_BAUDRATE
+bootdelay
- see CONFIG_BOOTDELAY
+bootcmd
- see CONFIG_BOOTCOMMAND
I know you only copied this, but the text is actually not helpful, as it does not even mention where to look for documentation for these CONFIG_* options
+autoload
- if set to "no" (any string beginning with 'n'),
- "bootp" will just load perform a lookup of the
- configuration from the BOOTP server, but not try to
- load any image using TFTP
We should add "dhcp" here, too.
+autostart
- if set to "yes", an image loaded using the "bootp",
- "rarpboot", "tftpboot" or "diskboot" commands will
- be automatically started (by internally calling
- "bootm")
- If set to "no", a standalone image passed to the
- "bootm" command will be copied to the load address
- (and eventually uncompressed), but NOT be started.
- This can be used to load and uncompress arbitrary
- data.
There is a consistency problem here.
In "bootm" (cmd/bootm.c), the "yes" part applies - any other value or the variable not being defined omitting the call of do_bootm().
This also applies to nandboot, btw.
In "bootelf" (cmd/elf.c), the "no" part applies - any other value or the variable not being defined will cause do_bootelf_exec() to be called.
This should be both documented and fixed.
+ipaddr
- IP address; needed for tftpboot command
...and for ping etc.
+vlan
- When set to a value < 4095 the traffic over
- Ethernet is encapsulated/received over 802.1q
- VLAN tagged frames.
Really? I can't see where "vlan" is actually used in the code. [I looked for it because I could not remember if the values is interpreted as decimal or hex number...]
Best regards,
Wolfgang Denk