summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* am65x: update FIT configuration to include additional overlaysPraneeth Bajjuri2019-03-281-0/+55
| | | | | | | | | | | | | | | | | AM654x EVM supports additional overlays. This patch is to include overlays * CSI2 OV490 camera * Toshiba TC358876 based expansion board * IDK application board * PCIe + USB2.0 SERDES personality card * PCIe + USB3.0 SERDES personality card EEPROM detech logic in bootloader should take care of loading the needed overlay when a specific card is connected. Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
* am65xevm: update FIT configurationPraneeth Bajjuri2019-02-271-41/+8
| | | | | | update FIT configuration based on 4.19 kernel Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
* Allow U-Boot to manually apply overlaysAndrew F. Davis2018-10-041-11/+14
| | | | | | | | | | U-Boot no longer hard-codes the list of overlays to apply based on the board type (EVM, IDK) rather detects daughter-cards individually and applies and overlay for each. To allow the same with FIT keep each overlay as a separate configuration. Signed-off-by: Andrew F. Davis <afd@ti.com>
* Remove ramdisk load address from FIT fileAndrew F. Davis2018-10-041-2/+0
| | | | | | | | The ramdisk image does not need to be loaded at a particular address. To prevent it from getting overwritten do not specify any load address to let U-Boot manage it for us. Signed-off-by: Andrew F. Davis <afd@ti.com>
* Add DT overlays to boot_fit.imgAndrew F. Davis2018-09-121-5/+58
| | | | Signed-off-by: Andrew F. Davis <afd@ti.com>
* Build FIT imageAndrew F. Davis2018-09-041-0/+46
In addition to already generated regular boot.img, build also FIT image containing: - Image - ramdisk - dtb files - dtbo files - boards configurations info Resulting image will be named boot_fit.img and will be placed to $(PRODUCT_OUT) dir. One can disable the generation of FIT boot image by disabling TARGET_BOOTIMAGE_FIT option in BoardConfig.mk file. Based on the same by: Sam Protsenko <semen.protsenko@linaro.org> Signed-off-by: Andrew F. Davis <afd@ti.com>