From: Denys Dmytriyenko <denys@ti.com>
To: Jacob Stiffler <j-stiffler@ti.com>
Cc: meta-arago@arago-project.org
Subject: Re: [tisdk-setup-scripts][PATCH] create-sdcard: use parted instead of sfdisk
Date: Thu, 5 May 2016 14:42:55 -0400 [thread overview]
Message-ID: <20160505184254.GK12998@edge> (raw)
In-Reply-To: <1462471748-17612-1-git-send-email-j-stiffler@ti.com>
On Thu, May 05, 2016 at 02:09:08PM -0400, Jacob Stiffler wrote:
> * The options for sfdisk since version 2.26
Truncated sentence?
> * Ubuntu 16.04 contains sfdisk version 2.27.1
> * In order to retain compatibility from Ubuntu 12.04 through 16.04,i
> use parted instead.
>
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
> create-sdcard.sh | 21 +++++++++------------
> 1 file changed, 9 insertions(+), 12 deletions(-)
>
> diff --git a/create-sdcard.sh b/create-sdcard.sh
> index 46ed5ae..edf57b0 100644
> --- a/create-sdcard.sh
> +++ b/create-sdcard.sh
> @@ -501,13 +501,12 @@ SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
>
> echo DISK SIZE - $SIZE bytes
>
> -CYLINDERS=`echo $SIZE/255/63/512 | bc`
> +parted -s $DRIVE mklabel msdos
> +parted -s $DRIVE unit cyl mkpart primary fat32 -- 0 9
> +parted -s $DRIVE set 1 boot on
> +parted -s $DRIVE unit cyl mkpart primary ext2 -- 9 310
> +parted -s $DRIVE unit cyl mkpart primary ext2 -- 310 -2
>
> -sfdisk -D -H 255 -S 63 -C $CYLINDERS $DRIVE << EOF
> -,9,0x0C,*
> -10,300,,-
> -310,,,-
> -EOF
>
> cat << EOM
>
> @@ -560,12 +559,10 @@ SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
>
> echo DISK SIZE - $SIZE bytes
>
> -CYLINDERS=`echo $SIZE/255/63/512 | bc`
> -
> -sfdisk -D -H 255 -S 63 -C $CYLINDERS $DRIVE << EOF
> -,9,0x0C,*
> -10,,,-
> -EOF
> +parted -s $DRIVE mklabel msdos
> +parted -s $DRIVE unit cyl mkpart primary fat32 -- 0 9
> +parted -s $DRIVE set 1 boot on
> +parted -s $DRIVE unit cyl mkpart primary ext2 -- 9 -2
>
> cat << EOM
>
> --
> 1.9.1
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
next prev parent reply other threads:[~2016-05-05 18:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-05 18:09 [tisdk-setup-scripts][PATCH] create-sdcard: use parted instead of sfdisk Jacob Stiffler
2016-05-05 18:42 ` Denys Dmytriyenko [this message]
2016-05-05 20:49 ` Stiffler, Jacob
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=20160505184254.GK12998@edge \
--to=denys@ti.com \
--cc=j-stiffler@ti.com \
--cc=meta-arago@arago-project.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.