diff options
author | Vivien Didelot <vdidelot@pbsc.com> | 2021-03-09 23:23:31 +0000 |
---|---|---|
committer | Praneeth Bajjuri <praneeth@ti.com> | 2021-03-11 22:29:35 -0600 |
commit | 0e26563f5f87f9596d2dffc5b05477c46bae734b (patch) | |
tree | f24a44370e03d3bd078c9e02c9b8f33a2fb02376 /conf/machine | |
parent | 9421b0df6124836f5157b52f84c398d2041422e1 (diff) | |
download | meta-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.inc | 4 |
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. |
52 | UBI_VOLNAME = "rootfs" | 52 | UBI_VOLNAME = "rootfs" |
53 | 53 | ||
54 | EXTRA_IMAGEDEPENDS += "u-boot" | 54 | EXTRA_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 |
57 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet gpu" | 57 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet gpu" |
@@ -63,4 +63,4 @@ TI_PDK_LIMIT_BOARDS = "evmAM335x icev2AM335x iceAMIC110 bbbAM335x skAM335x" | |||
63 | IMAGE_FSTYPES += "tar.xz wic.xz" | 63 | IMAGE_FSTYPES += "tar.xz wic.xz" |
64 | WKS_FILE ?= "sdimage-2part.wks" | 64 | WKS_FILE ?= "sdimage-2part.wks" |
65 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX}" | 65 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX}" |
66 | do_image_wic[depends] += "u-boot:do_deploy" | 66 | do_image_wic[depends] += "virtual/bootloader:do_deploy" |