summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorVivien Didelot <vdidelot@pbsc.com>2021-03-09 23:23:31 +0000
committerPraneeth Bajjuri <praneeth@ti.com>2021-03-17 19:35:07 -0500
commitc58409325f6adfe10143e791fd92413e8db3620a (patch)
tree421424d705b269a84e7a55af0e0724e1e42060ad /conf
parentb2aadcc2618e2b6946e0fbc045464e0429b232ea (diff)
downloadmeta-ti-c58409325f6adfe10143e791fd92413e8db3620a.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')
-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"