From 1f2f68301569e4918d2d1da122ff241f93561ab8 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Thu, 7 Jan 2021 00:56:11 +0100 Subject: uboot4extlinux-sunxi: .install: make u-boot image path configurable Signed-off-by: Denis 'GNUtoo' Carikli --- libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libre') diff --git a/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install index 46f8304cd..799856f1a 100644 --- a/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install +++ b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install @@ -1,5 +1,7 @@ +_image="/boot/u-boot/images/u-boot-sunxi-with-spl.bin" + flash_instructions() { - echo "# dd if=/boot/u-boot/images/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8" + echo "# dd if=${_image} of=/dev/mmcblk0 bs=1024 seek=8" } extlinux_warning() { @@ -14,7 +16,7 @@ flash_uboot() { echo "Do you want to do this now? [y|N]" read -r shouldwe if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then - dd if=/boot/u-boot/images/u-boot-sunxi-with-spl.bin of=$root bs=1024 seek=8 + dd "if=${_image}" "of=${root}" bs=1024 seek=8 else echo "You can do this later by running:" flash_instructions -- cgit v1.2.3