$ git clone https://github.com/linux4sam/u-boot-at91.git Cloning into 'u-boot-at91'... remote: Enumerating objects: 824533, done. remote: Counting objects: 100% (71919/71919), done. remote: Compressing objects: 100% (15288/15288), done. remote: Total 824533 (delta 56145), reused 71765 (delta 56072), pack-reused 752614 Receiving objects: 100% (824533/824533), 182.52 MiB | 3.67 MiB/s, done. Resolving deltas: 100% (677649/677649), done. Updating files: 100% (17753/17753), done. $ cd u-boot-at91
$ git branch -r origin/HEAD -> origin/master origin/master origin/sam9x60_early origin/sam9x60_iar origin/sama5d27wlsom1ek_ear origin/sama7g5_early origin/u-boot-2012.10-at91 origin/u-boot-2013.07-at91 origin/u-boot-2014.07-at91 origin/u-boot-2015.01-at91 origin/u-boot-2016.01-at91 origin/u-boot-2016.03-at91 origin/u-boot-2017.03-at91 origin/u-boot-2018.07-at91 origin/u-boot-2019.04-at91 origin/u-boot-2020.01-at91 origin/u-boot-2021.04-at91 origin/u-boot-2022.01-at91 origin/uboot_5series_1.x $ git checkout origin/u-boot-2022.01-at91 -b u-boot-2022.01-at91 Branch u-boot-2022.01-at91 set up to track remote branch u-boot-2022.01-at91 from origin. Switched to a new branch 'u-boot-2022.01-at91'
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in nand flash: sam9x60ek_nandflash_defconfig # To put environment variables in SD/MMC card: sam9x60ek_mmc_defconfig # To put environment variables in qspi flash: sam9x60ek_qspiflash_defconfigHere are the building steps for the SAM9X60-EK board:
# You can change the config according to your needs. make sam9x60ek_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in nand flash: sam9x60_curiosity_nandflash_defconfig # To put environment variables in SD/MMC card: sam9x60_curiosity_mmc_defconfigHere are the building steps for the SAM9X60-Curiosity board:
# You can change the config according to your needs. make sam9x60_curiosity_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in serial flash: sama5d3xek_spiflash_defconfig # To put environment variables in nandflash (default): sama5d3xek_nandflash_defconfig # To put environment variables in SD/MMC card: sama5d3xek_mmc_defconfigHere are the building steps for the SAMA5D3x-EK board:
# You can change the config according to your needs. make sama5d3xek_nandflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in serial flash: sama5d4ek_spiflash_defconfig # To put environment variables in nandflash (default): sama5d4ek_nandflash_defconfig # To put environment variables in SD/MMC card: sama5d4ek_mmc_defconfigHere are the building steps for the SAMA5D4EK board:
# You can change the config according to your needs. make sama5d4ek_nandflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in nandflash (default): sama5d3_xplained_nandflash_defconfig # To put environment variables in SD/MMC card: sama5d3_xplained_mmc_defconfigHere are the building steps for the SAMA5D3-Xplained board:
# You can change the config according to your needs. make sama5d3_xplained_nandflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in serial flash: sama5d4_xplained_spiflash_defconfig # To put environment variables in nandflash (default): sama5d4_xplained_nandflash_defconfig # To put environment variables in SD/MMC card: sama5d4_xplained_mmc_defconfigHere are the building steps for the SAMA5D4-Xplained board:
# You can change the config according to your needs. make sama5d4_xplained_nandflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in serial flash: sama5d2_xplained_spiflash_defconfig # To put environment variables in SD/MMC card: sama5d2_xplained_mmc_defconfigHere are the building steps for the SAMA5D2-Xplained board:
# You can change the config according to your needs. make sama5d2_xplained_spiflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in quad-SPI serial flash: sama5d27_som1_ek_qspiflash_defconfig # To put environment variables in SD/MMC card: sama5d27_som1_ek_mmc_defconfigHere are the building steps for the SAMA5D27-SOM1-EK board:
# You can change the config according to your needs. make sama5d27_som1_ek_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in quad-SPI serial flash: sama5d27_wlsom1_ek_qspiflash_defconfig # To put environment variables in SD/MMC card: sama5d27_wlsom1_ek_mmc_defconfigHere are the building steps for the SAMA5D27-WLSOM1-EK board:
# You can change the config according to your needs. make sama5d27_wlsom1_ek_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in SD/MMC card: sama5d2_icp_mmc_defconfigHere are the building steps for the SAMA5D2-ICP board:
# You can change the config according to your needs. make sama5d2_icp_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in nand flash: sama5d2_ptc_ek_nandflash_defconfig # To put environment variables in SD/MMC card: sama5d2_ptc_ek_mmc_defconfigHere are the building steps for the SAMA5D2-PTC-EK board:
# You can change the config according to your needs. make sama5d2_ptc_ek_mmc_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
configs/
to find the exact target when invoking make.
The U-Boot environment variables can be stored in different media, above config files can specify where to store the U-Boot environment.
# To put environment variables in serial flash: at91sam9x5ek_spiflash_defconfig # To put environment variables in nandflash (default): at91sam9x5ek_nandflash_defconfig # To put environment variables in SD/MMC card: at91sam9x5ek_mmc_defconfigHere are the building steps for the AT91SAM9x5-EK board:
# You can change the config according to your needs. make at91sam9x5ek_nandflash_defconfig makeThe result of these operations is a fresh U-Boot binary called
u-boot.bin
corresponding to the binary ELF file u-boot
. u-boot.bin
is the file you should store on the board
u-boot
is the ELF format binary file you may use to debug U-Boot through a JTag link for instance.
$ git clone https://github.com/linux4sam/u-boot-at91.git Cloning into 'u-boot-at91'... remote: Enumerating objects: 824533, done. remote: Counting objects: 100% (71919/71919), done. remote: Compressing objects: 100% (15288/15288), done. remote: Total 824533 (delta 56145), reused 71765 (delta 56072), pack-reused 752614 Receiving objects: 100% (824533/824533), 182.52 MiB | 3.67 MiB/s, done. Resolving deltas: 100% (677649/677649), done. Updating files: 100% (17753/17753), done. $ cd u-boot-at91
$ git branch -r origin/HEAD -> origin/master origin/master origin/sam9x60_early origin/sam9x60_iar origin/sama5d27wlsom1ek_ear origin/sama7g5_early origin/u-boot-2012.10-at91 origin/u-boot-2013.07-at91 origin/u-boot-2014.07-at91 origin/u-boot-2015.01-at91 origin/u-boot-2016.01-at91 origin/u-boot-2016.03-at91 origin/u-boot-2017.03-at91 origin/u-boot-2018.07-at91 origin/u-boot-2019.04-at91 origin/u-boot-2020.01-at91 origin/u-boot-2021.04-at91 origin/u-boot-2022.01-at91 origin/uboot_5series_1.x $ git checkout origin/u-boot-2022.01-at91 -b u-boot-2022.01-at91 Branch u-boot-2022.01-at91 set up to track remote branch u-boot-2022.01-at91 from origin. Switched to a new branch 'u-boot-2022.01-at91'
Copyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.
Microchip® and others, are registered trademarks or trademarks of Microchip Technology Inc. and its subsidiaries.
Arm® and others are registered trademarks or trademarks of Arm Limited (or its affiliates). Other terms and product names may be trademarks of others.
Ideas, requests, contributions ? Connect to LinksToCommunities page.