-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boot/ti-k3-boot-firmware: new package
This is extracted from a patch from Xuanhao Shi, Anand Gadiyar and Andreas Dannenberg submitted at https://patchwork.ozlabs.org/project/buildroot/patch/20230616002359.4139814-3-dannenberg@ti.com/. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
- Loading branch information
1 parent
a77db2f
commit 2389c76
Showing
5 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
config BR2_TARGET_TI_K3_BOOT_FIRMWARE | ||
bool "ti-k3-boot-firmware" | ||
depends on BR2_aarch64 | ||
help | ||
This package downloads and installs the TI-specific ti-sysfw | ||
and ti-dm firmware needed to boot TI K3 platforms (which | ||
include AM62x, AM64x, AM65x and more). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Locally calculated | ||
sha256 ab20ffbe7bba7e94be246b3417d33a914b3f07c16c47ef5a7f7602349a666a61 LICENSE.ti | ||
sha256 6032a258ce731d987576115f5de44c677a6b0cf8bddcd61a9a2852928bdfff92 ti-linux-firmware-08.06.00.006.tar.xz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
################################################################################ | ||
# | ||
# ti-k3-boot-firmware | ||
# | ||
################################################################################ | ||
|
||
# The hash 340194800a581baf976360386dfc7b5acab8d948 defined in the | ||
# Makefile of ti-k3-image-gen corresponds to the tag 08.06.00.006. | ||
TI_K3_BOOT_FIRMWARE_VERSION = 08.06.00.006 | ||
TI_K3_BOOT_FIRMWARE_SITE = https://git.ti.com/cgit/processor-firmware/ti-linux-firmware/snapshot | ||
TI_K3_BOOT_FIRMWARE_SOURCE = ti-linux-firmware-$(TI_K3_BOOT_FIRMWARE_VERSION).tar.xz | ||
TI_K3_BOOT_FIRMWARE_INSTALL_IMAGES = YES | ||
TI_K3_BOOT_FIRMWARE_LICENSE = TI Proprietary | ||
TI_K3_BOOT_FIRMWARE_LICENSE_FILES = LICENSE.ti | ||
|
||
define TI_K3_BOOT_FIRMWARE_INSTALL_IMAGES_CMDS | ||
cp -dpfr $(@D)/ti-sysfw $(BINARIES_DIR)/ | ||
cp -dpfr $(@D)/ti-dm $(BINARIES_DIR)/ | ||
endef | ||
|
||
$(eval $(generic-package)) |