summaryrefslogtreecommitdiffstats
path: root/conf/machine
diff options
context:
space:
mode:
authorVivien Didelot <vdidelot@pbsc.com>2021-03-09 23:23:31 +0000
committerPraneeth Bajjuri <praneeth@ti.com>2021-03-11 22:29:35 -0600
commit0e26563f5f87f9596d2dffc5b05477c46bae734b (patch)
treef24a44370e03d3bd078c9e02c9b8f33a2fb02376 /conf/machine
parent9421b0df6124836f5157b52f84c398d2041422e1 (diff)
downloadmeta-ti-0e26563f5f87f9596d2dffc5b05477c46bae734b.tar.gz
ti33x: allow different virtual/bootloader
Boards like the beaglebone currently hardcode "u-boot" as a dependency for the image and the wic format, and this prevents one from choosing a different bootloader via: PREFERRED_PROVIDER_virtual/bootloader = "non-u-boot-bootloader" Depending on "virtual/bootloader" instead of "u-boot" fixes this. Signed-off-by: Vivien Didelot <vdidelot@pbsc.com> Suggested-by: Denys Dmytriyenko <denis@denix.org> Reviewed-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
Diffstat (limited to 'conf/machine')
-rw-r--r--conf/machine/include/ti33x.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/include/ti33x.inc b/conf/machine/include/ti33x.inc
index abfd7ec7..b3c3b6d7 100644
--- a/conf/machine/include/ti33x.inc
+++ b/conf/machine/include/ti33x.inc
@@ -51,7 +51,7 @@ UBOOT_SUFFIX = "img"
51# and u-boot. 51# and u-boot.
52UBI_VOLNAME = "rootfs" 52UBI_VOLNAME = "rootfs"
53 53
54EXTRA_IMAGEDEPENDS += "u-boot" 54EXTRA_IMAGEDEPENDS += "virtual/bootloader"
55 55
56# List common SoC features, may need to add touchscreen for specific machines 56# List common SoC features, may need to add touchscreen for specific machines
57MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet gpu" 57MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet gpu"
@@ -63,4 +63,4 @@ TI_PDK_LIMIT_BOARDS = "evmAM335x icev2AM335x iceAMIC110 bbbAM335x skAM335x"
63IMAGE_FSTYPES += "tar.xz wic.xz" 63IMAGE_FSTYPES += "tar.xz wic.xz"
64WKS_FILE ?= "sdimage-2part.wks" 64WKS_FILE ?= "sdimage-2part.wks"
65IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX}" 65IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX}"
66do_image_wic[depends] += "u-boot:do_deploy" 66do_image_wic[depends] += "virtual/bootloader:do_deploy"