From 68d4f7f29e1159b96cfdaef110d1b241712afcf4 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 22 Aug 2019 05:02:11 +0300 Subject: Fix uImage and srec The kernel image file that the uImage and srec images are built from is stored in $image_kernel, not $kernel_image. Fix it. Signed-off-by: Laurent Pinchart --- images/uImage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'images/uImage.sh') diff --git a/images/uImage.sh b/images/uImage.sh index 716900e..45cb581 100644 --- a/images/uImage.sh +++ b/images/uImage.sh @@ -2,7 +2,7 @@ make_uImage_image() { mkimage -A $arch -O linux -T kernel -C none -a $loadaddr -e $loadaddr \ - -n "Linux-${version}" -d $output_dir/arch/$arch/boot/$kernel_image \ + -n "Linux-${version}" -d $output_dir/arch/$arch/boot/$image_kernel \ $output_dir/arch/$arch/boot/uImage } -- cgit v1.2.3