From affdaa2c68cbbe3122f5d18c7795decafa856f13 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Thu, 14 Mar 2024 12:35:35 -0400 Subject: [PATCH] hvk: check for EVK_IP before compiling --- scripts/hvk-compile.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/hvk-compile.sh b/scripts/hvk-compile.sh index 2621ab6..6505651 100755 --- a/scripts/hvk-compile.sh +++ b/scripts/hvk-compile.sh @@ -48,6 +48,10 @@ if [ $# -gt 1 ]; then exit 1 fi +if [ ${#} -eq 1 ]; then + EVK_IP="${1}" +fi + if [ ! -f .config ]; then echo "Missing configuration file .config." echo "Configure your kernel by running 'hvk-init.sh'" @@ -77,9 +81,7 @@ elif [ x"${mode}" = x"uboot" ]; then ${KMAKE} u-boot-initial-env fi -if [ ${#} -eq 1 ]; then - EVK_IP="${1}" - +if [ "${EVK_IP}" != "" ]; then scp ${BOOT_SRC}/Image root@${EVK_IP}:${BOOT_DEST}/Image-latest scp ${DTB_SRC} root@${EVK_IP}:${BOOT_DEST}/latest.dtb -- 2.20.1