From 4ed80f1e38572517a2d0e4f72b50c086ccb865dc Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@robotics.uk.to>
Date: Tue, 1 Jan 2019 19:45:14 +0000
Subject: [PATCH] wget in chroot

---
 src/freedombone-utils-flasher | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/freedombone-utils-flasher b/src/freedombone-utils-flasher
index 9f0b4d15f..03f3dec2f 100755
--- a/src/freedombone-utils-flasher
+++ b/src/freedombone-utils-flasher
@@ -66,10 +66,11 @@ function beaglebone_flasher {
             if [ "$rootdir" ]; then
                 # shellcheck disable=SC2086
                 chroot "$rootdir" $INSTALL_PACKAGES wget rsync
+                chroot "$rootdir" wget "https://code.freedombone.net/bashrc/${PROJECT_NAME}/raw/master/image_build/emmc_functions.sh" -O "$EMMC_DIR/functions.sh"
             else
                 $INSTALL_PACKAGES wget rsync
+                wget "https://code.freedombone.net/bashrc/${PROJECT_NAME}/raw/master/image_build/emmc_functions.sh" -O "$rootdir$EMMC_DIR/functions.sh"
             fi
-            wget "https://code.freedombone.net/bashrc/${PROJECT_NAME}/raw/master/image_build/emmc_functions.sh" -O "$rootdir$EMMC_DIR/functions.sh"
         fi
     fi
     if [ ! -f "$rootdir$EMMC_DIR/functions.sh" ]; then
-- 
GitLab