Skip to content

Commit

Permalink
tegra-storage-layout-base: fix typo on external layout
Browse files Browse the repository at this point in the history
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: #1684

Signed-off-by: Dan Walkes <danwalkes@trellis-logic.com>
  • Loading branch information
dwalkes authored and madisongh committed Aug 31, 2024
1 parent ba9e09c commit a0a0005
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a0a0005

Please sign in to comment.