From: Priya N S <priya.ns@mistralsolutions.com> To: meta-arago@arago-project.org Cc: Priya N S <priya.ns@ti.com>, Sekhar Nori <nsekhar@ti.com> Subject: [tisdk-setup-scripts] [master] [PATCH-V3 2/3] create-sdcard: Fix wrong rootfs tarball selection Date: Wed, 7 Jul 2021 08:44:13 +0530 [thread overview] Message-ID: <20210707031414.46720-3-priya.ns@ti.com> (raw) In-Reply-To: <20210707031414.46720-1-priya.ns@ti.com> From: Priya N S <priya.ns@ti.com> * Validate user input of rootfs tarball selection. * This will not allow the user to proceed with wrong rootfs tarball selection. Signed-off-by: Priya N S <priya.ns@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com> --- create-sdcard.sh | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/create-sdcard.sh b/create-sdcard.sh index 264095a..d052312 100644 --- a/create-sdcard.sh +++ b/create-sdcard.sh @@ -766,10 +766,19 @@ cat << EOM ################################################################################ EOM - ls --sort=size $ROOTFILEPARTH | grep "tisdk.*image" | grep 'tar.xz' | grep -n '' | awk {'print " " , $1'} - echo "" - read -p "Enter Number of rootfs Tarball: " TARNUMBER - echo " " + COUNT=`ls $ROOTFILEPARTH | grep "tisdk.*image" | grep 'tar.xz' | grep -n '' | awk {'print $1'} | wc -l` + while : + do + ls --sort=size $ROOTFILEPARTH | grep "tisdk.*image" | grep 'tar.xz' | grep -n '' | awk {'print " " , $1'} + read -p "Enter Number of rootfs Tarball: " TARNUMBER + echo + if [ -z "${TARNUMBER//[1-$COUNT]}" ] && [ -n "$TARNUMBER" ] ; then + break + else + echo "Invalid selection: '$TARNUMBER'. Please use values from 1 to $COUNT" + fi + echo + done FOUNDTARFILENAME=`ls --sort=size $ROOTFILEPARTH | grep "image" | grep 'tar.xz' | grep -n '' | grep "${TARNUMBER}:" | cut -c3- | awk {'print$1'}` ROOTFSTAR=$FOUNDTARFILENAME -- 2.19.1.windows.1
next prev parent reply other threads:[~2021-07-07 8:44 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-07 3:14 [tisdk-setup-scripts] [master] [PATCH-V3 0/3] create-sdcard: Fix rootfs tarball search and selection Priya N S 2021-07-07 3:14 ` [tisdk-setup-scripts] [master] [PATCH-V3 1/3] create-sdcard.sh: fix regex used for rootfs tarball Priya N S 2021-07-07 3:14 ` Priya N S [this message] 2021-07-07 3:14 ` [tisdk-setup-scripts] [master] [PATCH-V3 3/3] create-sdcard.sh: Stop using cylinder as unit for partition size Priya N S 2021-07-07 15:08 ` Nishanth Menon 2021-07-29 12:44 ` Vigna Raja Priya N S
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210707031414.46720-3-priya.ns@ti.com \ --to=priya.ns@mistralsolutions.com \ --cc=meta-arago@arago-project.org \ --cc=nsekhar@ti.com \ --cc=priya.ns@ti.com \ --subject='Re: [tisdk-setup-scripts] [master] [PATCH-V3 2/3] create-sdcard: Fix wrong rootfs tarball selection' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.