Newer
Older
barebox / defaultenv / defaultenv-2-base / bin / mtdparts-add
#!/bin/sh

mkdir -p /tmp/mtdparts

parts=
device=
kernelname=
bbdev=

while getopt "p:d:k:b" opt; do
        if [ ${opt} = p ]; then
                parts=${OPTARG}
        elif [ ${opt} = d ]; then
                device=${OPTARG}
        elif [ ${opt} = k ]; then
                kernelname=${OPTARG}
	elif [ ${opt} = b ]; then
		bbdev=true
        fi
done

if [ -z "${device}" ]; then
	echo "$0: no device given"
	exit
fi

if [ -z "${parts}" ]; then
	echo "$0: no partitions given"
	exit
fi

if [ -e /tmp/mtdparts/${device} ]; then
	delpart /dev/${device}.*
fi

addpart -n /dev/${device} "$parts" || exit
mkdir -p /tmp/mtdparts/${device}

if [ -n ${kernelname} ]; then
	global linux.mtdparts.${device}
	global.linux.mtdparts.${device}="${kernelname}:${parts}"
fi