Changes between Version 41 and Version 42 of buildroot


Ignore:
Timestamp:
03/01/2021 07:41:46 AM (3 years ago)
Author:
Tim Harvey
Comment:

fixed typo

Legend:

Unmodified
Added
Removed
Modified
  • buildroot

    v41 v42  
    633633setenv fsload tftpboot
    634634setenv bootdir . # set this to the prefix of your tftp dir
    635 run loadfdt && $fsload $kernel_addr_r $bootdir/uImage && bootm $loadaddr - $fdt_addr
     635run loadfdt && $fsload $loadaddr $bootdir/uImage && bootm $loadaddr - $fdt_addr
    636636}}}
    637637 * load from microSD with ext/fat filesystem
     
    640640setenv fsload load mmc 0:1
    641641setenv bootdir . # set this to the prefix of your tftp dir
    642 run loadfdt && $fsload $kernel_addr_r $bootdir/uImage && bootm $loadaddr - $fdt_addr
     642run loadfdt && $fsload $loadaddr $bootdir/uImage && bootm $loadaddr - $fdt_addr
    643643}}}
    644644 * load from USB with ext/fat filesystem
     
    648648usb start
    649649setenv bootdir . # set this to the prefix of your tftp dir
    650 run loadfdt && $fsload $kernel_addr_r $bootdir/uImage && bootm $loadaddr - $fdt_addr
     650run loadfdt && $fsload $loadaddr $bootdir/uImage && bootm $loadaddr - $fdt_addr
    651651}}}
    652652