From 00aaa2eebbb9ffc086235342a3031ec58bd0a12b Mon Sep 17 00:00:00 2001 From: Dan Walkes Date: Fri, 30 Aug 2024 16:26:45 -0600 Subject: [PATCH] tegra-storage-layout-base: fix typo on external layout Fix typo and missing 'T' character in variable reference for `PARTITION_LAYOUT_EXTERNAL`. The current typo means if the name of the file referenced by PARTITION_FILE_EXTERNAL was different than the name PARTITION_LAYOUT_EXTERNAL, the wrong filename would be used in the l4t-storage-layout dir. Relates to #1 1: https://github.com/OE4T/meta-tegra/pull/1684 Signed-off-by: Dan Walkes --- recipes-bsp/tegra-binaries/tegra-storage-layout-base_35.5.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-bsp/tegra-binaries/tegra-storage-layout-base_35.5.0.bb b/recipes-bsp/tegra-binaries/tegra-storage-layout-base_35.5.0.bb index 479f6c639c93..8e36ec40eb88 100644 --- a/recipes-bsp/tegra-binaries/tegra-storage-layout-base_35.5.0.bb +++ b/recipes-bsp/tegra-binaries/tegra-storage-layout-base_35.5.0.bb @@ -10,7 +10,7 @@ PARTITION_FILE_EXTERNAL ?= "${S}/tools/kernel_flash/${PARTITION_LAYOUT_EXTERNAL} do_install() { install -d ${D}${datadir}/l4t-storage-layout install -m 0644 ${PARTITION_FILE} ${D}${datadir}/l4t-storage-layout/${PARTITION_LAYOUT_TEMPLATE} - [ -z "${PARTITION_LAYOUT_EXTERNAL}" ] || install -m 0644 ${PARTITION_FILE_EXTERNAL} ${D}${datadir}/l4t-storage-layout/${PARTITION_LAYOUT_EXERNAL} + [ -z "${PARTITION_LAYOUT_EXTERNAL}" ] || install -m 0644 ${PARTITION_FILE_EXTERNAL} ${D}${datadir}/l4t-storage-layout/${PARTITION_LAYOUT_EXTERNAL} } PACKAGES = "${PN}-dev"