9
0
Fork 0

defaultenv-2: mtdparts-add: remove unused variable

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2015-02-11 09:56:41 +01:00
parent ed440360e6
commit 341f7d5574
1 changed files with 0 additions and 3 deletions

View File

@ -5,7 +5,6 @@ mkdir -p /tmp/mtdparts
parts=
device=
kernelname=
bbdev=
while getopt "p:d:k:b" opt; do
if [ ${opt} = p ]; then
@ -14,8 +13,6 @@ while getopt "p:d:k:b" opt; do
device=${OPTARG}
elif [ ${opt} = k ]; then
kernelname=${OPTARG}
elif [ ${opt} = b ]; then
bbdev=true
fi
done