mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-30 20:07:55 +00:00
Fix device tree file check in nvidia-kernel-oot-dtb
Signed-off-by: William Cheng <shihuac@amazon.com>
This commit is contained in:
committed by
Matt Madison
parent
87a914b530
commit
605e62d288
@@ -14,7 +14,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|||||||
do_deploy() {
|
do_deploy() {
|
||||||
for dtb in ${KERNEL_DEVICETREE}; do
|
for dtb in ${KERNEL_DEVICETREE}; do
|
||||||
dtbf="${STAGING_DIR_HOST}/boot/devicetree/$dtb"
|
dtbf="${STAGING_DIR_HOST}/boot/devicetree/$dtb"
|
||||||
if [ -z "$dtbf" ]; then
|
if [ ! -f "$dtbf" ]; then
|
||||||
bbfatal "Not found: $dtbf"
|
bbfatal "Not found: $dtbf"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user