diff options
| author | Tom Rini <[email protected]> | 2025-09-15 13:05:48 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-03 16:55:44 -0600 |
| commit | 601cebc29d2a41846bbad36453b97b065db656dd (patch) | |
| tree | 9c97dd1b69fd48bf1a9cbb339f2a887e1993c64a /doc/README.commands.spl | |
| parent | 70ae44f3713427be5368d0829b97cafbd01ef1f5 (diff) | |
cmd: spl: Remove ATAG support from this command
While we continue to have some systems which support extremely legacy
OS booting methods, we do not have use cases for supporting this in
Falcon mode anymore. Remove this support and references from the
documentation.
Co-developed-by: Anshul Dalal <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'doc/README.commands.spl')
| -rw-r--r-- | doc/README.commands.spl | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/doc/README.commands.spl b/doc/README.commands.spl index ecfd3ca9ee5..54cc5b1ec42 100644 --- a/doc/README.commands.spl +++ b/doc/README.commands.spl @@ -5,24 +5,16 @@ SUBCOMMAND EXPORT To execute the command everything has to be in place as if bootm should be used. (kernel image, initrd-image, fdt-image etc.) -export has two subcommands: - atags: exports the ATAGS +export has one subcommand: fdt: exports the FDT Call is: -spl export <fdt|atags> [kernel_addr] [initrd_addr] [fdt_addr if fdt] +spl export fdt [kernel_addr] [initrd_addr] [fdt_addr if fdt] TYPICAL CALL -on OMAP3: -nandecc hw -nand read 0x82000000 0x280000 0x400000 /* Read kernel image from NAND*/ -spl export atags /* export ATAGS */ -nand erase 0x680000 0x20000 /* erase - one page */ -nand write 0x80000100 0x680000 0x20000 /* write the image - one page */ - -call with FDT: +on OMAP3 with FDT: nandecc hw nand read 0x82000000 0x280000 0x400000 /* Read kernel image from NAND*/ tftpboot 0x80000100 devkit8000.dtb /* Read fdt */ |
