All of lore.kernel.org
 help / color / mirror / Atom feed
From: Darren Hart <dvhart@linux.intel.com>
To: "poky@yoctoproject.org" <poky@yoctoproject.org>
Subject: RFC: mkzipimage.sh script
Date: Fri, 06 May 2011 12:06:58 -0700	[thread overview]
Message-ID: <4DC446D2.1080301@linux.intel.com> (raw)

The process for creating the USBZIP format usb key images is tedious, so I threw
a script together. I suspect there might be demand for an integrated tool to do
this for the more onerous of the image making processes.

1) Any feedback on this particular script?
2) Should this go to scripts/contrib? 
3) Would an image burning tool (ala unetbootin) be of interest to 
   others?



#!/bin/bash

function usage {
	echo "Usage: $(basename $0) IMAGE DEVICE"
}

function check_device {
	if [ ! -b "$1" ] || [ ! -w "$1" ]; then
		echo "Error opening device '$1'."
		echo "Device should be a writable block device."
		exit 1
	fi
}

if [ $# -ne 2 ]; then
	usage
	exit 1
fi

IMAGE=$1
DEV=$2

if [ ! -f "$IMAGE" ]; then
	echo "Image '$IMAGE' does not exist."
	exit 1
fi

check_device $DEV

HS=$(fdisk -l $DEV | egrep ".*heads.*sectors.*cylinders")
HEADS=$(echo $HS | cut -d' ' -f1)
SECTORS=$(echo $HS | cut -d' ' -f3)

echo "Preparing $DEV, this may take several minutes."
mkdiskimage -4 $DEV 0 $HEADS $SECTORS
if [ $? -ne 0 ]; then
	echo "Error running mkdiskimage."
	exit 1
fi

echo -n "Remove and reinsert the device, then press Enter: "
read
echo -n "Enter the new device name [$DEV]: "
read NEWDEV
if [ -n "$NEWDEV" ]; then
	DEV=$NEWDEV
fi
check_device $DEV

echo -n "Mounting image and device..."
mkdir /tmp/image-$$
mount -o loop $IMAGE /tmp/image-$$
if [ $? -ne 0 ]; then
	echo -e "\nError mounting image."
	exit 1;
fi
mkdir /tmp/dev-$$
mount $DEV\4 /tmp/dev-$$
if [ $? -ne 0 ]; then
	echo -e "\nError mounting device."
	exit 1;
fi
echo "Done"

echo -n "Copying image..."
cp -rf /tmp/image-$$/* /tmp/dev-$$
sync
echo "Done"

echo -n "Installing syslinux..."
syslinux $DEV\4
echo "Done"

echo "Cleaning up..."
umount /tmp/image-$$
rmdir /tmp/image-$$
umount /tmp/dev-$$
rmdir /tmp/dev-$$
echo "Done"

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


             reply	other threads:[~2011-05-06 19:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-06 19:06 Darren Hart [this message]
2011-05-06 20:24 ` RFC: mkzipimage.sh script Joshua Lock

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=4DC446D2.1080301@linux.intel.com \
    --to=dvhart@linux.intel.com \
    --cc=poky@yoctoproject.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.